UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 259 B
export default getSymbols; /** * Creates an array of the own enumerable symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of symbols. */ declare function getSymbols(object: any): any[];