Comparing version 2.1.5 to 2.1.6
@@ -44,2 +44,10 @@ // Returns a Promise that will resolve once the module is set on the loader | ||
if(obj instanceof Set) { | ||
clone = new Set(); | ||
obj.forEach(function(item) { | ||
clone.add(item); | ||
}); | ||
return clone; | ||
} | ||
// instanceof fails to catch objects created with `null` as prototype | ||
@@ -46,0 +54,0 @@ if (obj instanceof Object || toString.call(obj) === "[object Object]") { |
{ | ||
"name": "steal", | ||
"description": "Gets JavaScript.", | ||
"version": "2.1.5", | ||
"version": "2.1.6", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Bitovi", |
4641187
117560