UNPKG

287 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.objectKeys = void 0;
4/**
5 * @name objectKeys
6 * @summary A version of Object.keys that is typed for TS
7 */
8function objectKeys(value) {
9 return Object.keys(value);
10}
11exports.objectKeys = objectKeys;