Socket
Socket
Sign inDemoInstall

collections

Package Overview
Dependencies
Maintainers
7
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

collections - npm Package Compare versions

Comparing version 5.1.10 to 5.1.11

2

package.json
{
"name": "collections",
"version": "5.1.10",
"version": "5.1.11",
"description": "data structures with idiomatic JavaScript collection interfaces",

@@ -5,0 +5,0 @@ "homepage": "http://www.collectionsjs.com",

@@ -28,4 +28,5 @@ "use strict";

var isSymbolDefined = typeof Symbol !== "undefined";
Array.from = function (values, mapFn, thisArg) {
if(Symbol && values && typeof values[Symbol.iterator] === "function") {
if (isSymbolDefined && values && typeof values[Symbol.iterator] === "function") {
return Array.nativeFrom(values, mapFn, thisArg);

@@ -32,0 +33,0 @@ }

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