UNPKG

ts-object-keys

Version:

Fix for Object.keys, which normally just returns an array of strings, which is not good when you care about strong typing

12 lines (8 loc) 282 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var objectKeys = function objectKeys(object) { return Object.keys(object); }; exports.default = objectKeys; exports.objectKeys = objectKeys; //# sourceMappingURL=ts-object-keys.cjs.development.js.map