1.0.8 • Published 21 days ago

@nurliman/base85 v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
21 days ago

@nurliman/base85

Description

@nurliman/base85 is a Base85 encoder and decoder that compatible for Node.js and browser.

Installation

To install the package, run the following command:

npm install @nurliman/base85

Usage

Import the package into your project:

import { encodeBase85, decodeBase85 } from "@nurliman/base85";

const encoded = encodeBase85("your string");
const decoded = decodeBase85(encoded);

using default import:

import base85 from "@nurliman/base85";

const encoded = base85.encode("your string");
const decoded = base85.decode(encoded);

using require:

const { encodeBase85, decodeBase85 } = require("@nurliman/base85");

const encoded = encodeBase85("your string");
const decoded = decodeBase85(encoded);

Please replace 'your string' with the string you want to encode and decode.

EncodeOptions

EncodeOptions is an object that can be passed to the encode function to customize its behavior. It has the following properties:

  • wrap: If true, the encoded string will be wrapped in <~ and ~>. Defaults to true.

Here's an example of how to use it:

import base85 from "@nurliman/base85";

const result = base85.encode("Hello World!");
console.log(result);
// <~87cURD]i,"Ebo80~>

const result = base85.encode("Hello World!", {
  wrap: false, // Set this to false if you don't want the output to be wrapped
});
console.log(result);
// 87cURD]i,"Ebo80

Decode

import base85 from "@nurliman/base85";

const result = base85.decode('<~87cURD]i,"Ebo80~>');
console.log(result);
// Hello World!

// it also works without the wrapping characters
const result = base85.decode('87cURD]i,"Ebo80');
console.log(result);
// Hello World!

Author

Nurliman Diara

License

This project is licensed under the MIT License.

1.0.8

21 days ago

1.0.7

1 month ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.4

2 months ago

1.0.3

2 months ago

1.0.2

2 months ago

1.0.1

4 months ago

1.0.0

4 months ago

0.1.2

4 months ago

0.1.1

4 months ago

0.1.0

4 months ago