UNPKG

374 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.objectEntries = objectEntries;
7
8// Copyright 2017-2022 @polkadot/util authors & contributors
9// SPDX-License-Identifier: Apache-2.0
10
11/**
12 * @name objectEntries
13 * @summary A version of Object.entries that is typed for TS
14 */
15function objectEntries(obj) {
16 return Object.entries(obj);
17}
\No newline at end of file