@toolsnap/base64-toolkit
v1.0.0
Published
Base64 encoding and decoding toolkit. Encode and decode strings, files, and data to/from Base64 format.
Downloads
70
Maintainers
Readme
@toolsnap/base64-toolkit
Base64 encoding and decoding toolkit.
Features
- Encode strings to Base64
- Decode Base64 to strings
- URL-safe Base64 support
- Base64 validation
Usage
const { encode, decode, encodeURL } = require('@toolsnap/base64-toolkit');
encode('Hello World'); // SGVsbG8gV29ybGQ=
decode('SGVsbG8gV29ybGQ='); // Hello World
encodeURL('data=test&value=1'); // ZGF0YT10ZXN0JnZhbHVlPTEOnline Tool
Try it online at risetop.top/base64-encoder
License
MIT
