Comparing version 1.0.7 to 1.0.8
18
index.js
@@ -155,11 +155,11 @@ /** | ||
mitsuketa = { | ||
getType : getType(identity), | ||
sameType : sameType(identityA,identityB), | ||
sameStructure : sameStructure(identityA,identityB), | ||
identical : identical(identityA,identityB), | ||
isIterable : isIterable(identity), | ||
containsKeys : containsKeys(identity,keyList), | ||
trim : trim(identity,keyList), | ||
locate : locate(collection, identity), | ||
deepGet : deepGet(collection, identity) | ||
getType : function(identity) { return getType(identity)}, | ||
sameType : function(identityA,identityB) { return sameType(identityA,identityB)}, | ||
sameStructure : function(identityA,identityB) { return sameStructure(identityA,identityB)}, | ||
identical : function(identityA,identityB) { return identical(identityA,identityB)}, | ||
isIterable : function(identity) { return isIterable(identity)}, | ||
containsKeys : function(identity,keyList) { return containsKeys(identity,keyList)}, | ||
trim : function(identity,keyList) { return trim(identity,keyList)}, | ||
locate : function(collection, identity) { return locate(collection, identity)}, | ||
deepGet : function(collection, identity) { return deepGet(collection, identity)} | ||
} | ||
@@ -166,0 +166,0 @@ |
{ | ||
"name": "mitsuketa", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "A Javascript library that enables you to handle deeply nested objects easily.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
8423