signal-desktop/ts/util/objectMap.ts
2024-07-23 17:31:40 -07:00

10 lines
342 B
TypeScript

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export function objectMap<T>(
obj: Record<string, T>,
f: (key: keyof typeof obj, value: (typeof obj)[keyof typeof obj]) => unknown
): Array<unknown> {
const keys: Array<keyof typeof obj> = Object.keys(obj);
return keys.map(key => f(key, obj[key]));
}