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

8 lines (6 loc) 178 B
var objectKeys = function objectKeys(object) { return Object.keys(object); }; export default objectKeys; export { objectKeys }; //# sourceMappingURL=ts-object-keys.esm.js.map