Files

8 lines
134 B
JavaScript
Raw Permalink Normal View History

2023-03-07 10:52:05 +07:00
'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}