1
0
mirror of https://github.com/thangisme/notes.git synced 2026-06-16 00:50:05 -04:00

Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

16
node_modules/is-utf8/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
#utf8 detector
Detect if a Buffer is utf8 encoded.
It need The minimum amount of bytes is 4.
```javascript
var fs = require('fs');
var isUtf8 = require('is-utf8');
var ansi = fs.readFileSync('ansi.txt');
var utf8 = fs.readFileSync('utf8.txt');
console.log('ansi.txt is utf8: '+isUtf8(ansi)); //false
console.log('utf8.txt is utf8: '+isUtf8(utf8)); //true
```