UNPKG

@polkadot/util

Version:
11 lines (10 loc) 258 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.objectKeys = objectKeys; /** * @name objectKeys * @summary A version of Object.keys that is typed for TS */ function objectKeys(value) { return Object.keys(value); }