Simple decoder/encoder built using react.
Check out the live version: here
It's pretty simple to extend. Go to encodings.js
and add a new encoding format to the Encodings
array
with the following format:
{
name: "Name of encoding",
encode: string => string,
decode: string => string
}
Handle encoding errors.