UNPKG

node-objectify

Version:

Utility for setting/getting/manipulating deeply nested attributes of an object or array.

11 lines (7 loc) 207 B
'use strict'; var setNestedProp = require('./shared').setNestedProperty; module.exports = function setFactory(src) { return function set(path, thing) { return setNestedProp(path, src, thing); } }