JSPM

@hugoalh/base32

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q16679F
  • License MIT

A module for Base32 encode and decode.

Package Exports

  • @hugoalh/base32

Readme

Base32 (ES)

โš–๏ธ MIT

GitHub: hugoalh/base32-es JSR: @hugoalh/base32 NPM: @hugoalh/base32

An ECMAScript (JavaScript & TypeScript) module for Base32 encode and decode.

๐ŸŒŸ Features

๐Ÿ”ฐ Begin

๐ŸŽฏ Targets

Targets Remote JSR NPM
Bun >= v1.1.0 โŒ โœ”๏ธ โœ”๏ธ
Deno >= v2.1.0 โœ”๏ธ โœ”๏ธ โœ”๏ธ
NodeJS >= v20.9.0 โŒ โœ”๏ธ โœ”๏ธ

[!NOTE]

  • It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.

#๏ธโƒฃ Resources Identifier

  • Remote - GitHub Raw:
    https://raw.githubusercontent.com/hugoalh/base32-es/{Tag}/mod.ts
  • JSR:
    [jsr:]@hugoalh/base32[@{Tag}]
  • NPM:
    [npm:]@hugoalh/base32[@{Tag}]

[!NOTE]

  • For usage of remote resources, it is recommended to import the entire module with the main path mod.ts, however it is also able to import part of the module with sub path if available, but do not import if:

    • it's path has an underscore prefix (e.g.: _foo.ts, _util/bar.ts), or
    • it is a benchmark or test file (e.g.: foo.bench.ts, foo.test.ts), or
    • it's symbol has an underscore prefix (e.g.: _bar, _foo).

    These elements are not considered part of the public API, thus no stability is guaranteed for them.

  • For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file jsr.jsonc property exports for available sub entrypoints.

  • It is recommended to use this module with tag for immutability.

๐Ÿ›ก๏ธ Runtime Permissions

This module does not request any runtime permission.

๐Ÿงฉ APIs

  • class Base32Decoder {
      constructor(options?: Base32DecodeOptions);
      get variant(): Base32Variant;
      decodeToBytes(item: string | Uint8Array): Uint8Array;
      decodeToText(item: string | Uint8Array): string;
    }
  • class Base32Encoder {
      constructor(options?: Base32EncodeOptions);
      get padding(): boolean;
      get variant(): Base32Variant;
      encodeToBytes(item: string | Uint8Array): Uint8Array;
      encodeToText(item: string | Uint8Array): string;
    }
  • class Base32DecoderStream extends TransformStream<Uint8Array, Uint8Array> {
      constructor(options?: Base32DecodeOptions);
    }
  • class Base32EncoderStream extends TransformStream<Uint8Array, Uint8Array> {
      constructor(options?: Base32EncodeOptions);
    }
  • type Base32Variant =
      | "crockford"
      | "geohash"
      | "hex"
      | "hexadecimal"
      | "rfc3548"
      | "rfc4648-6"
      | "rfc4648-7"
      | "standard"
      | "wordsafe"
      | "z";
  • interface Base32BasicOptions {
      variant?: Base32Variant;
    }
  • interface Base32DecodeOptions extends Base32BasicOptions {
    }
  • interface Base32EncodeOptions extends Base32BasicOptions {
      padding?: boolean | null;
    }

[!NOTE]

โœ๏ธ Examples

  • new Base32Encoder().encodeToText("foobar");
    //=> "MZXW6YTBOI======"