Ghost/ghost/admin/app/utils/bind.js

14 lines
278 B
JavaScript
Raw Normal View History

const {slice} = Array.prototype;
export default function (/* func, args, thisArg */) {
let args = slice.call(arguments);
let func = args.shift();
let thisArg = args.pop();
function bound() {
return func.apply(thisArg, args);
}
return bound;
}