UNPKG

@polkadot/util

Version:
17 lines (14 loc) 360 B
"use strict"; 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); }