@newdash/newdash
Version:
javascript/typescript utility library
11 lines (10 loc) • 376 B
TypeScript
export default arrayLikeKeys;
/**
* Creates an array of the enumerable property names of the array-like `value`.
*
* @private
* @param {*} value The value to query.
* @param {boolean} inherited Specify returning inherited property names.
* @returns {Array} Returns the array of property names.
*/
declare function arrayLikeKeys(value: any, inherited?: boolean): any[];