UNPKG

162 BJavaScriptView Raw
1/**
2 * @name objectEntries
3 * @summary A version of Object.entries that is typed for TS
4 */
5export function objectEntries(obj) {
6 return Object.entries(obj);
7}
\No newline at end of file