Security News
ESLint is Now Language-Agnostic: Linting JSON, Markdown, and Beyond
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.
@stardazed/streams-text-encoding
Advanced tools
Implementation of text encoder and decoder streams
This package provides an implementation of the TextEncoderStream
and TextDecoderStream
types from the Encoding Standard.
⚠️ Important: this is NOT a polyfill. The classes are just normal exports.
👉 If you want an all-in-one polyfill for streams, fetch interop and text encoding streams, use the ⭐️Stardazed streams polyfill⭐️!
npm install @stardazed/streams-text-encoding
pnpm install @stardazed/streams-text-encoding
yarn add @stardazed/streams-text-encoding
import { TextEncoderStream, TextDecoderStream } from "@stardazed/streams-text-encoding";
// encode
const textReadable = /* Get a readable stream that produces string chunks */;
textReadable
.pipeThrough(new TextEncoderStream()) // no options available
.pipeTo(byteWritable);
// decode
const byteReadable = /* Get a readable stream that produces binary chunks */;
const decoder = new TextDecoderStream(encoding, options);
byteReadable
.pipeThrough(decoder)
.pipeTo(textWritable);
The options passed to the TextDecoderStream are identical to those passed to the
TextDecoder
class. See MDN's docs
for more.
© 2018 by Arthur Langereis - @zenmumbler
MIT
FAQs
Implementation of text encoder and decoder streams
The npm package @stardazed/streams-text-encoding receives a total of 626 weekly downloads. As such, @stardazed/streams-text-encoding popularity was classified as not popular.
We found that @stardazed/streams-text-encoding demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ESLint has added JSON and Markdown linting support with new officially-supported plugins, expanding its versatility beyond JavaScript.
Security News
Members Hub is conducting large-scale campaigns to artificially boost Discord server metrics, undermining community trust and platform integrity.
Security News
NIST has failed to meet its self-imposed deadline of clearing the NVD's backlog by the end of the fiscal year. Meanwhile, CVE's awaiting analysis have increased by 33% since June.