Files

8 lines
134 B
JavaScript
Raw Permalink Normal View History

2025-08-18 14:20:34 +08:00
'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}