UNPKG

softkave-js-utils

Version:

JavaScript & Typescript utility functions, types, and classes

9 lines 255 B
import { cast } from '../other/index.js'; export function reverseMap(inputMap) { const reversedMap = cast({}); for (const k in inputMap) { reversedMap[inputMap[k]] = k; } return reversedMap; } //# sourceMappingURL=reverseMap.js.map