franyer24's picture
Upload 1895 files
2e178e3 verified
Raw
History Blame Contribute Delete
134 Bytes
'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}