shrink-string
TypeScript icon, indicating that this package has built-in type declarations

3.1.9 • Public • Published

shrink-string

Tiny string compression module for Node.

Donate


Installation

npm i shrink-string

Usage

const { compress, decompress } = require('shrink-string')

// `compress` takes a unicode string and returns a base64 string
// `decompress` takes that base64 string and returns the original unicode string

const thing = async (s = '') => {
  const shrunk = await compress(s)
  const expanded = await decompress(shrunk)
  assert(s === expanded)
}

Thanks to MrlolDev for adding TypeScript support.

LICENSE

/shrink-string/

    Package Sidebar

    Install

    npm i shrink-string

    Weekly Downloads

    3,761

    Version

    3.1.9

    License

    MIT

    Unpacked Size

    11.2 kB

    Total Files

    15

    Last publish

    Collaborators

    • zacanger