sjufan84's picture
updated UI
77731d1
raw
history blame
134 Bytes
'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}