UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

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); }