form-cheatsheet/js/polyfills/EcmaScript/Array.of.js

3 lines
74 B
JavaScript
Raw Normal View History

2016-10-10 12:02:31 -04:00
Array.of = function() {
return Array.prototype.slice.call(arguments);
};