Skip to content

Commit 4c4300b

Browse files
committed
Release 0.0.4.
1 parent 8fa983b commit 4c4300b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dot-access",
33
"repo": "Ntran013/dot-access",
44
"description": "Access object properties using dot notation",
5-
"version": "0.0.3",
5+
"version": "0.0.4",
66
"keywords": [],
77
"dependencies": {},
88
"development": {

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ exports.get = function (obj, path) {
66
}
77
};
88

9-
exports.set = function (obj, path, value) {
9+
exports.set = function (obj, path, value) {
1010
new Function('_', 'val', '_.' + path + ' = val')(obj, value);
1111
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dot-access",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/Ntran013/dot-access.git"

0 commit comments

Comments
 (0)