Generated test files for new snippets
This commit is contained in:
5
test/bind/bind.js
Normal file
5
test/bind/bind.js
Normal file
@ -0,0 +1,5 @@
|
||||
const bind = (fn, context, ...args) =>
|
||||
function() {
|
||||
return fn.apply(context, args.concat(...arguments));
|
||||
};
|
||||
module.exports = bind
|
||||
Reference in New Issue
Block a user