es6-collections
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -24,3 +24,3 @@ (function (exports) {'use strict'; | ||
if (typeof Map == 'undefined' || !(new Map).values().next) { | ||
if (typeof Map == 'undefined' || typeof ((new Map).values) !== 'function' || !(new Map).values().next) { | ||
exports.Map = createCollection({ | ||
@@ -49,3 +49,3 @@ // WeakMap#delete(key:void*):boolean | ||
if (typeof Set == 'undefined' || !(new Set).values().next) { | ||
if (typeof Set == 'undefined' || typeof ((new Set).values) !== 'function' || !(new Set).values().next) { | ||
exports.Set = createCollection({ | ||
@@ -52,0 +52,0 @@ // Set#has(value:void*):boolean |
{ | ||
"name": "es6-collections", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "ES6 Harmony like collections such Map, WeakMap, and Set", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/WebReflection/es6-collections", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30026