[EDIT] FILE: _baseHasIn.js.tar
home/koolde6/public_html/lovestrong/server/node_modules/lodash/_baseHasIn.js 0000755 00000000566 15073746701 0023356 0 ustar 00 /** * The base implementation of `_.hasIn` without support for deep paths. * * @private * @param {Object} [object] The object to query. * @param {Array|string} key The key to check. * @returns {boolean} Returns `true` if `key` exists, else `false`. */ function baseHasIn(object, key) { return object != null && key in Object(object); } module.exports = baseHasIn; home/koolde6/public_html/lovestrong/frontend/node_modules/lodash/_baseHasIn.js 0000755 00000000566 15076434461 0023667 0 ustar 00 /** * The base implementation of `_.hasIn` without support for deep paths. * * @private * @param {Object} [object] The object to query. * @param {Array|string} key The key to check. * @returns {boolean} Returns `true` if `key` exists, else `false`. */ function baseHasIn(object, key) { return object != null && key in Object(object); } module.exports = baseHasIn;
SAVE
CANCEL