UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

6 lines (5 loc) 254 B
// https://stackoverflow.com/questions/60141960/typescript-key-value-relation-preserving-object-entries-type/75337277#75337277 /** Same as Object.entries() but with type inference */ export function objectEntries(obj) { return Object.entries(obj); }