@feugene/mu
Version:
Helpful TS utilities without dependencies
10 lines • 402 B
TypeScript
/**
* 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.
*/
export default function arrayLikeKeys(value: any, inherited?: boolean): string[];
//# sourceMappingURL=arrayLikeKeys.d.ts.map