UNPKG

@friendlyjesse/library

Version:

rollup + typescript 制作的工具函数函数库

10 lines (9 loc) 256 B
/** * 获取 json 的 keys 或 values * @category JSON * @param json - json * @param type - 'keys' / 'values' * @returns 获取的 keys 或 values */ declare function getDeepJSON(json: any, type?: string): any[]; export default getDeepJSON;