Socket
Socket
Sign inDemoInstall

collections

Package Overview
Dependencies
Maintainers
5
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.0.0 to 5.0.1

3

_map.js

@@ -7,3 +7,3 @@ "use strict";

if(global.Map !== void 0) {
if((global.Map !== void 0) && (typeof global.Set.prototype.values === "function")) {

@@ -13,2 +13,3 @@ Map = module.exports = global.Map,

Map.Map = Map; // hack so require("map").Map will work in MontageJS
// use different strategies for making sets observable between Internet

@@ -15,0 +16,0 @@ // Explorer and other browsers.

@@ -9,3 +9,3 @@ "use strict";

if(global.Set !== void 0) {
if((global.Set !== void 0) && (typeof global.Set.prototype.values === "function")) {

@@ -15,3 +15,2 @@ GlobalSet = module.exports = global.Set;

GlobalSet.prototype.reduce = function (callback, basis /*, thisp*/) {

@@ -18,0 +17,0 @@ var thisp = arguments[2];

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

## v5.0.1
- Changes to make IE11 use set and map polyfills
## v5.0.0

@@ -10,4 +14,5 @@ - Some backward compatibility breaking changes:

- Introduces .from() method on constructors.
- Fix for issue #149
- Changes to work in IE10, involving splitting pure implementations as private from the public API that support listening,
## v3.0.0

@@ -14,0 +19,0 @@

{
"name": "collections",
"version": "5.0.0",
"version": "5.0.1",
"description": "data structures with idiomatic JavaScript collection interfaces",
"homepage": "http://www.collectionsjs.com",
"author": "Kris Kowal <kris@cixar.com> (http://github.com/kriskowal)",
"keywords": [
"contributors": [
{
"name": "Benoit Marchant"
}
],
"keywords": [
"collections",

@@ -9,0 +14,0 @@ "data structures",

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