mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 06:05:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			134 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			134 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
export default function bind(fn, thisArg) {
 | 
						|
  return function wrap() {
 | 
						|
    return fn.apply(thisArg, arguments);
 | 
						|
  };
 | 
						|
}
 |