You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
488 B
12 lines
488 B
4 years ago
|
export function get (object, path, def) {
|
||
|
return (object = (path.split ? path.split('.') : path).reduce(function (obj, p) {
|
||
|
return obj && obj[p]
|
||
|
}, object)) === undefined ? def : object;
|
||
|
};
|
||
|
|
||
|
export function set (object, path, val, obj) {
|
||
|
return !/^(__proto__|constructor|prototype)$/.test(path) && ((path = path.split ? path.split('.') : path.slice(0)).slice(0, -1).reduce(function (obj, p) {
|
||
|
return obj[p] = obj[p] || {};
|
||
|
}, obj = object)[path.pop()] = val), object;
|
||
|
};
|