1.0.0 • Published 5 years ago

utf8-uint8array v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

utf8-uint8array

Installation

npm install utf8-uint8array

or

yarn add utf8-uint8array

Encode UTF-8 string as Uint8Array

import { toBytes } from "utf8-uint8array";

const bytes: Uint8Array = toBytes("Привет 🌎");

Decode Uint8Array as UTF-8 string

import { fromBytes } from "utf8-uint8array";

const bytes: Uint8Array;

const string: string = fromBytes(bytes);