Spaces:
Sleeping
Sleeping
File size: 307 Bytes
51ddcbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
var parsePath = require('./lib/parse-path')
var setValue = require('./lib/set-value')
function appendField (store, key, value) {
var steps = parsePath(key)
steps.reduce(function (context, step) {
return setValue(context, step, context[step.key], value)
}, store)
}
module.exports = appendField
|