1.0.3 • Published 3 years ago

@jimizai/bytes v1.0.3

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

bytes

This library can easily and quickly convert js string to bytes

install

Install bytes using yarn:

yarn add @jimizai/bytes -S

Install bytes using npm

npm i @jimizai/bytes -S

usage

import { b } from "@jimizai/bytes";
const bytes = b`hello wolrd`;
// => Uint8Array(11) [
//   104, 101, 108, 108,
//   111,  32, 119, 111,
//   108, 114, 100
// ]