1.0.0 • Published 7 years ago
@abecodes/hasher64 v1.0.0
hasher64
hasher64 is a simple base64 encoder and decoder for node. It works with strings as well as with files. It has no dependencies and works with nodes native APIs.
It is released under the UNLICENSE & supports modern environments.
Installation
Using npm:
$ npm i -g @abecodes/hasher64
$ npm i --save @abecodes/hasher64In Node.js:
// Load the package.
const hasher = require("@abecodes/hasher64");API
encode
hasher.encode(value: string) => base64 stringThe encode method takes a string as paramter and returns it as base64 encoded string.
decode
hasher.decode(base64 string) => stringThe decode method takes a base64 encoded string and returns it string value
atob
hasher.atob(data Buffer) => base64 stringThe atob method takes a Buffer and returns it as base64 encoded string
btoa
hasher.btoa(base64 string) => BufferThe btoa method takes a base64 encoded Buffer and returns the Buffer
Greetings
May you enjoy using this piece of software as much as I enjoyed writing it. Stay bug free and have an awesome day <3
1.0.0
7 years ago