UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 290 B
export default basePropertyOf; /** * 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. */ declare function basePropertyOf(object: any): Function;