Core & Utilities
Data & State
Frontend & Logic
Architecture & Security
Appearance
Inverts object key/value pairs.
import { invert } from '@vielzeug/toolkit'; invert({ a: 'x', b: 'y' }); // { x: 'a', y: 'b' }