UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

12 lines (11 loc) 388 B
export default basePickBy; /** * The base implementation of `pickBy`. * * @private * @param {Object} object The source object. * @param {string[]} paths The property paths to pick. * @param {Function} predicate The function invoked per property. * @returns {Object} Returns the new object. */ declare function basePickBy(object: any, paths?: string[], predicate?: Function): any;