New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

args-to-arr

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

args-to-arr - npm Package Compare versions

Comparing version 1.3.6 to 1.3.7

4

CHANGELOG.md

@@ -0,1 +1,5 @@

#v1.3.7
* performance improvements
#v1.3.6

@@ -2,0 +6,0 @@

2

dist/args-to-arr.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc