UNPKG

253 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4/**
5 * @name objectKeys
6 * @summary A version of Object.keys that is typed for TS
7 */
8export function objectKeys(value) {
9 return Object.keys(value);
10}
\No newline at end of file