UNPKG

vike

Version:

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

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