Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Muqriz 48f16bfc3e initail first 4 meses atrás
..
index.js initail first 4 meses atrás
license initail first 4 meses atrás
package.json initail first 4 meses atrás
readme.md initail first 4 meses atrás

readme.md

strip-bom Build Status

Strip UTF-8 byte order mark (BOM) from a string

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

const stripBom = require('strip-bom');

stripBom('\uFEFFunicorn');
//=> 'unicorn'

Related

License

MIT © Sindre Sorhus