Visually hidden case formatting
npm install @rubixibuc/briefcase 
_Visually hidden case formatting_
#### Installation
``shell script`
npm i @rubixibuc/briefcase
#### Example
`js
import { encode, decode } from "@rubixibuc/briefcase";
// string encoded to zero width non-printable characters
const encoded = encode("abc");
const decoded = decode(encoded);
// decoded === "abc"
`
- encode() and decode() both return the passed value unchanged when given anything but non-empty stringdecode()
- only accepts output from encode() and will throw new Error("encountered invalid character")` otherwise