Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.134.253.166
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
strip-bom /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
407
B
-rw-r--r--
2015-06-29 13:02
license
1.09
KB
-rw-r--r--
2014-04-06 15:43
package.json
1.56
KB
-rw-r--r--
2021-02-04 21:24
readme.md
902
B
-rw-r--r--
2015-06-29 13:11
Save
Rename
# strip-bom [](https://travis-ci.org/sindresorhus/strip-bom) > Strip UTF-8 [byte order mark](http://en.wikipedia.org/wiki/Byte_order_mark#UTF-8) (BOM) from a string/buffer From Wikipedia: > The Unicode Standard permits the BOM in UTF-8, but does not require nor recommend its use. Byte order has no meaning in UTF-8. ## Install ``` $ npm install --save strip-bom ``` ## Usage ```js var fs = require('fs'); var stripBom = require('strip-bom'); stripBom('\uFEFFunicorn'); //=> 'unicorn' stripBom(fs.readFileSync('unicorn.txt')); //=> 'unicorn' ``` ## Related - [strip-bom-cli](https://github.com/sindresorhus/strip-bom-cli) - CLI for this module - [strip-bom-stream](https://github.com/sindresorhus/strip-bom-stream) - Stream version of this module ## License MIT © [Sindre Sorhus](http://sindresorhus.com)