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