UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 273 B
/** * The base implementation of `keys` which doesn't treat sparse arrays as dense. * * @private * @param object The object to query. * @returns Returns the array of property names. */ export declare function baseKeys(object: any): string[]; export default baseKeys;