Merge pull request #6694 from jaswilli/bind

Remove Function.bind polyfill
This commit is contained in:
Austin Burdine 2016-04-10 00:53:19 -05:00
commit 89a86249f5

View File

@ -1,13 +0,0 @@
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;
}