node: working on start

This commit is contained in:
rkiel
2019-07-14 11:57:06 -04:00
parent fe909bf44f
commit a688e646d3
4 changed files with 56 additions and 6 deletions

13
js/immutable.js Normal file
View File

@@ -0,0 +1,13 @@
const _ = require("lodash");
let lib;
function set(dp, path, value) {
return _.assign({}, dp, _.set({}, path, value));
}
lib = {
set
};
module.exports = lib;