bytes.js

0.0.2 • Public • Published

bytes.js

Utf8 bytes array from/to string.

Install

npm install bytes.js

Example

var bytes = require('bytes.js');
 
bytes.fromString('abc')  // [97, 98, 99]
bytes.toString([97, 98, 99])  // 'abc'
bytes.fromString('你好')  // [228, 189, 160, 229, 165, 189]
bytes.toString([228, 189, 160, 229, 165, 189])  // '你好'

License

MIT. Copyright (c) Chao Wang hit9@icloud.com

Readme

Keywords

Package Sidebar

Install

npm i bytes.js

Weekly Downloads

10,383

Version

0.0.2

License

MIT

Last publish

Collaborators

  • hit9