vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
10 lines (9 loc) • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.objectKeys = objectKeys;
// 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 */
function objectKeys(obj) {
return Object.keys(obj);
}