UNPKG

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