@aofl/object-utils
Advanced tools
Comparing version 3.0.0-beta.39 to 3.0.0-beta.40
The MIT License (MIT) | ||
Copyright (c) 2018 Age of Learning | ||
Copyright (c) 2019 Age of Learning | ||
@@ -4,0 +4,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of |
{ | ||
"name": "@aofl/object-utils", | ||
"version": "3.0.0-beta.39", | ||
"version": "3.0.0-beta.40", | ||
"description": "A small collection of Object utility functions designed to have a small footprint (20b gz) and be performant", | ||
@@ -34,3 +34,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"@aofl/cli": "^3.0.0-beta.38", | ||
"@aofl/cli": "^3.0.0-beta.40", | ||
"cross-env": "^6.0.3", | ||
@@ -41,3 +41,3 @@ "jsdoc": "^3.6.3", | ||
}, | ||
"gitHead": "34d49dff4ba970447c184bbe8809a533b1146a27" | ||
"gitHead": "0bfdc05f0d4406219d0b432a55fe53ab1726f4c0" | ||
} |
@@ -5,2 +5,4 @@ # @aofl/object-utils | ||
[Api Documentation](https://ageoflearning.github.io/aofl/v3.x/api-docs/module-@aofl_object-utils.html) | ||
--- | ||
@@ -7,0 +9,0 @@ ## Why? |
@@ -30,5 +30,6 @@ /* eslint no-invalid-this: "off" */ | ||
expect(get(this.data, 'prop2.prop2prop1')).to.equal('prop2prop1'); | ||
expect(get(this.data, 'prop2.prop2prop2')).to.equal(this.defaults.prop2.prop2prop2); | ||
expect(get(this.data, 'prop2.prop2prop2')).to.eql(this.defaults.prop2.prop2prop2); | ||
expect(get(this.data, 'prop2.prop2prop2')).to.not.equal(this.defaults.prop2.prop2prop2); | ||
expect(get(this.data, 'prop3.prop3prop1')).to.equal(this.data.prop3.prop3prop1); | ||
}); | ||
}); |
26037
536
115