Sha256: 65fae1f40433d51cb6c8fbb6a41caf7febd1189ba2b1296af34bc7e4bafa22c2
Contents?: true
Size: 391 Bytes
Versions: 290
Compression:
Stored size: 391 Bytes
Contents
var baseGet = require('./_baseGet'); /** * A specialized version of `baseProperty` which supports deep paths. * * @private * @param {Array|string} path The path of the property to get. * @returns {Function} Returns the new accessor function. */ function basePropertyDeep(path) { return function(object) { return baseGet(object, path); }; } module.exports = basePropertyDeep;
Version data entries
290 entries across 267 versions & 32 rubygems