mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 11:27:59 +00:00
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.objectValues = objectValues;
|
|
/**
|
|
* @name objectValues
|
|
* @summary A version of Object.values that is typed for TS
|
|
*/
|
|
function objectValues(obj) {
|
|
return Object.values(obj);
|
|
}
|