refactor(util) slice: apply -> call

This commit is contained in:
coderaiser 2014-01-31 11:35:06 -05:00
parent f5db7a8a24
commit 53450a5b31

View file

@ -855,7 +855,7 @@
var ret;
if (array)
ret = [].slice.apply(array, count);
ret = [].slice.call(array, count);
return ret;
};