Socket
Socket
Sign inDemoInstall

bytes.js

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bytes.js

Utf8 bytes array from/to string.


Version published
Weekly downloads
9.1K
increased by421.38%
Maintainers
1
Install size
3.87 kB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 15 May 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc