Skip to main content
Home

Built and signed on GitHub Actions

NOTICE: This module has been merged into @std/encoding. | An extension of the @std/encoding module offering streaming alternatives for the base64, base32, and hex methods.

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
a year ago (1.2.7)
class DecodeBase32Stream

Based off the @std/encoding module, offering a streaming alternative for decodeBase32

Examples

Example 1

import { DecodeBase32Stream } from '@doctor/encoding-stream/base32'

await (await Deno.open('./base32.txt'))
  .readable
  .pipeThrough(new TextDecoderStream())
  .pipeThrough(new DecodeBase32Stream())
  .pipeTo((await Deno.create('./deno.json')).writable)

Constructors

new
DecodeBase32Stream()

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@doctor/encoding-stream

Import symbol

import { DecodeBase32Stream } from "@doctor/encoding-stream/base32";
or

Import directly with a jsr specifier

import { DecodeBase32Stream } from "jsr:@doctor/encoding-stream/base32";

Add Package

pnpm i jsr:@doctor/encoding-stream
or (using pnpm 10.8 or older)
pnpm dlx jsr add @doctor/encoding-stream

Import symbol

import { DecodeBase32Stream } from "@doctor/encoding-stream/base32";

Add Package

yarn add jsr:@doctor/encoding-stream
or (using Yarn 4.8 or older)
yarn dlx jsr add @doctor/encoding-stream

Import symbol

import { DecodeBase32Stream } from "@doctor/encoding-stream/base32";

Add Package

npx jsr add @doctor/encoding-stream

Import symbol

import { DecodeBase32Stream } from "@doctor/encoding-stream/base32";

Add Package

bunx jsr add @doctor/encoding-stream

Import symbol

import { DecodeBase32Stream } from "@doctor/encoding-stream/base32";