2.0.1 • Published 2 years ago

xcoding v2.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

xcoding

xcoding is a Node.js package for dealing with types of data and files

Installation

npm i xcoding

Example

const {decode, encode} = require('xcoding');

// Encoding Base64 Strings

encode('Hello World!')
"Hello World!" converted to Base64 is "SGVsbG8gV29ybGQh"

// Decoding Base64 Strings

decode('SGVsbG8gV29ybGQh')
"SGVsbG8gV29ybGQh" converted from Base64 to ASCII is "Hello World!"

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

2.0.1

2 years ago

2.0.0

2 years ago

1.0.0

2 years ago