artdaq_node_server  v1_00_08
 All Classes Namespaces Files Variables Pages
update.js
1 var baseUpdate = require('./_baseUpdate'),
2  castFunction = require('./_castFunction');
3 
31 function update(object, path, updater) {
32  return object == null ? object : baseUpdate(object, path, castFunction(updater));
33 }
34 
35 module.exports = update;