Skip to content

Qix-/node-high-order

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Find the length of a UTF-8 glyph by its first byte

Resources

License

Stars

Watchers

Forks

Packages

No packages published