HarshvardhanCn01's picture
Upload 1878 files
295e44e verified
'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}