implement slice

This commit is contained in:
ansuz
2017-09-14 11:51:33 +02:00
parent a8f7beb20b
commit 47ce645897
2 changed files with 5 additions and 0 deletions

View File

@@ -202,5 +202,9 @@ define([], function () {
};
};
Util.slice = function (A) {
return Array.prototype.slice.call(A);
};
return Util;
});