UNPKG

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