mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 09:08:03 +00:00
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
/**
|
|
* @name objectKeys
|
|
* @summary A version of Object.keys that is typed for TS
|
|
*/
|
|
export function objectKeys(value) {
|
|
return Object.keys(value);
|
|
}
|