Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tarry

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tarry - npm Package Compare versions

Comparing version 0.2.5 to 0.2.6

7

index.js

@@ -69,5 +69,6 @@ /**

function toArray(iterable) {
var array = new Array(iterable.length);
for (var i = 0, item; (item = iterable[i]) !== undefined; i++) {
array.push(item);
var length = iterable.length;
var array = new Array(length);
for (var i = 0; i < length; i++) {
array[i] = iterable[i];
}

@@ -74,0 +75,0 @@ return array;

{
"name": "tarry",
"version": "0.2.5",
"version": "0.2.6",
"description": "Utility library for manipulating JavaScript Arrays",

@@ -5,0 +5,0 @@ "keywords": [

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