1.0.0 • Published 5 years ago

fast-is-utf8 v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Fast UTF8 detector

Check utf8 using AVX2 and c++ source code from simdjson

npm install fast-is-utf8

Usage

const isUTF8 = require('fast-is-utf8');

const buf = Buffer.from([0xd0, 0x90]);
 
console.log(isUTF8(buf)); // => true

Benchmark

$ node benchmark.js

fast-is-utf8 x 2,143,027 ops/sec ±0.37% (93 runs sampled)
is-utf8 x 660,326 ops/sec ±0.32% (94 runs sampled)
Fastest is fast-is-utf8

License

MIT