UNPKG

node-objectify

Version:

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

12 lines (7 loc) 197 B
'use strict'; var getNestedProps = require('./shared').getNestedProperty; module.exports = function getFactory(src) { return function get(path) { return getNestedProps(path, src); }; }