Sha256: c7eb2d3492b419cd85b585615e2b1618300891b13fb750e52ab473616e8e7efa
Contents?: true
Size: 358 Bytes
Versions: 276
Compression:
Stored size: 358 Bytes
Contents
/** * The base implementation of `_.propertyOf` without support for deep paths. * * @private * @param {Object} object The object to query. * @returns {Function} Returns the new accessor function. */ function basePropertyOf(object) { return function(key) { return object == null ? undefined : object[key]; }; } module.exports = basePropertyOf;
Version data entries
276 entries across 274 versions & 31 rubygems