Comparing version 1.1.2 to 1.1.3
{ | ||
"name": "cyclonejs", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "A pure-js adaptation of the W3C structured cloning algorithm, designed to provide an easy interface for deep copying of complex objects", | ||
@@ -5,0 +5,0 @@ "main": "cyclone.js", |
@@ -5,5 +5,5 @@ { | ||
"description": "A pure-javascript adaptation of the W3C's structured cloning algorithm, designed to provide an easy interface for deep copying of complex objects", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"scripts": ["cyclone.js"], | ||
"main": "cyclone.js" | ||
} |
@@ -188,3 +188,3 @@ /** | ||
case '[object Array]': | ||
output = new Array(input.length); | ||
output = []; | ||
isCollection = true; | ||
@@ -191,0 +191,0 @@ break; |
{ | ||
"name": "cyclonejs", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "A pure-javascript adaptation of the W3C's structured cloning algorithm, designed to provide an easy interface for deep copying of complex objects", | ||
@@ -5,0 +5,0 @@ "main": "cyclone.js", |
436629