can-reflect
Advanced tools
Comparing version 1.8.1 to 1.8.2
{ | ||
"name": "can-reflect", | ||
"version": "1.8.1", | ||
"version": "1.8.2", | ||
"description": "reflection on unknown data types", | ||
@@ -5,0 +5,0 @@ "homepage": "http://canjs.com", |
@@ -186,3 +186,3 @@ var QUnit = require('steal-qunit'); | ||
var MyArray = function(values) { | ||
this.push.apply(this, values); | ||
this.push.apply(this, values || []); | ||
}; | ||
@@ -189,0 +189,0 @@ MyArray.prototype = Object.create(Array.prototype); |
145884