UNPKG

vike

Version:

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

7 lines (6 loc) • 280 B
// https://stackoverflow.com/questions/52856496/typescript-object-keys-return-string // https://github.com/sindresorhus/ts-extras/blob/main/source/object-keys.ts /** Same as Object.keys() but with type inference */ export function objectKeys(obj) { return Object.keys(obj); }