Encode and Decode Strings
1const encoded = conv.encodeString("hello@example.com");2console.log(encoded); 3// Example output: "gyTfA...something"5const decoded = conv.decodeToString(encoded);6console.log(decoded); 7// Output: "hello@example.com"