Skip to main content

πŸ™ƒ Invert KV

Invert the key-value pairs in an object in Deno. This is a port of sindresorhus/invert-kv.

Test CI

import { invert } from "https://deno.land/x/invert_kv/mod.ts";

const obj = { hello: "world" };

const result = invert(); // { world: "hello" }

πŸ‘©β€πŸ’» Development

Run tests:

deno test

πŸ“„ License

MIT Β© Denorg