UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

11 lines (9 loc) 199 B
'use strict'; function collectArguments() { var args = arguments, i = args.length, arr = new Array(i); while (i--) { arr[i] = args[i]; } return arr; } module.exports = collectArguments;