UNPKG

@polkadot/util

Version:
12 lines (11 loc) 304 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.objectEntries = void 0; /** * @name objectEntries * @summary A version of Object.entries that is typed for TS */ function objectEntries(obj) { return Object.entries(obj); } exports.objectEntries = objectEntries;