Skip to content
This repository was archived by the owner on Oct 14, 2024. It is now read-only.

BlackAsLight/encoding-stream

Repository files navigation

Encoding Stream

Encoding Stream is a simple lib offering Streaming methods of the @std/encoding module.

import { DecodeBase64Stream, EncodeBase64Stream } from '@doctor/encoding-stream'

await (await Deno.open('./deno.json'))
	.readable
	.pipeThrough(new EncodeBase64Stream())
	.pipeThrough(new DecodeBase64Stream())
	.pipeTo(Deno.stdout.writable, { preventClose: true })

About

An extension of the @std/encoding module offering streaming methods of the base64, 32, and 16 methods.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 2

  •  
  •