args-to-arr
Advanced tools
Comparing version 1.3.6 to 1.3.7
@@ -0,1 +1,5 @@ | ||
#v1.3.7 | ||
* performance improvements | ||
#v1.3.6 | ||
@@ -2,0 +6,0 @@ |
@@ -18,3 +18,3 @@ 'use strict'; | ||
var params = []; | ||
var params = new Array(args.length - start); | ||
@@ -21,0 +21,0 @@ for (var index = start, len = args.length; index < len; index++) { |
@@ -106,3 +106,3 @@ (function (global, factory) { | ||
var params = []; | ||
var params = new Array(args.length - start); | ||
@@ -109,0 +109,0 @@ for (var index = start, len = args.length; index < len; index++) { |
{ | ||
"name": "args-to-arr", | ||
"version": "1.3.6", | ||
"version": "1.3.7", | ||
"description": "Arguments to array, the easy way", | ||
@@ -5,0 +5,0 @@ "main": "dist/args-to-arr.js", |
@@ -49,3 +49,3 @@ # args-to-arr | ||
> *Note that* `args-to-arr` *supports any* `array-like` *object* | ||
> *Note that* `args-to-arr` *supports any* `array-like` *object*. | ||
@@ -52,0 +52,0 @@ ###### example |
@@ -17,3 +17,3 @@ import isArrayLike from "is-array-like"; | ||
const params = []; | ||
const params = new Array(args.length - start); | ||
@@ -20,0 +20,0 @@ for (let index = start, len = args.length; index < len; index++) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
17287