can-map-define
Advanced tools
Comparing version 4.3.2 to 4.3.3
@@ -1652,4 +1652,11 @@ /* jshint asi: false */ | ||
QUnit.test("can.getOwnEnumerableKeys works with null", function() { | ||
var VM = CanMap.extend({}); | ||
var vm = new VM({ foo: null }); | ||
deepEqual( canReflect.getOwnEnumerableKeys(vm), [ "foo" ], "getOwnEnumerableKeys works with null"); | ||
}); | ||
require("can-reflect-tests/observables/map-like/type/type")("CanMap / can-map-define", function(){ | ||
return CanMap.extend({}); | ||
}); |
@@ -406,3 +406,3 @@ "use strict"; | ||
var definedKeys = keysForDefinition(this.define); | ||
var dataKeys = keysForDefinition(this._data); | ||
var dataKeys = Object.keys(this._data); | ||
@@ -409,0 +409,0 @@ var enumerable = this.constructor.enumerable; |
{ | ||
"name": "can-map-define", | ||
"version": "4.3.2", | ||
"version": "4.3.3", | ||
"description": "Define rich attribute behavior", | ||
@@ -5,0 +5,0 @@ "homepage": "https://canjs.com", |
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
84322
1775