Skip to content

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

License

Notifications You must be signed in to change notification settings

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