@polkadot/util
Version:
A collection of useful utilities for @polkadot
17 lines (14 loc) • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.objectKeys = objectKeys;
// Copyright 2017-2022 @polkadot/util authors & contributors
// SPDX-License-Identifier: Apache-2.0
/**
* @name objectKeys
* @summary A version of Object.keys that is typed for TS
*/
function objectKeys(value) {
return Object.keys(value);
}