mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 10:17:57 +00:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
/**
|
|
* @name objectValues
|
|
* @summary A version of Object.values that is typed for TS
|
|
*/
|
|
export function objectValues(obj) {
|
|
return Object.values(obj);
|
|
}
|