high-order

0.1.1 • Public • Published

node-high-order Travis-CI.org Build Status Coveralls.io Coverage Rating

Calculates the number of bytes in a UTF-8 glyph given just its first byte

Usage:

const highOrder = require('high-order');
 
console.log(highOrder(0xC0)); //-> 2
console.log(highOrder(0x01)); //-> 1
 
// continuation byte
console.log(highOrder(0x81)); //-> 0
 
console.log(Buffer('🦄')[0])); //-> 4

License

Licensed under the MIT License. You can find a copy of it in LICENSE.

Package Sidebar

Install

npm i high-order

Weekly Downloads

6

Version

0.1.1

License

MIT

Last publish

Collaborators

  • qix