Skip to content

Commit 2b99dcb

Browse files
committed
Add package to remove a UTF-8 byte order mark from the beginning of a string
1 parent 4383de3 commit 2b99dcb

File tree

10 files changed

+402
-1
lines changed

10 files changed

+402
-1
lines changed

TODO.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ TODO
11541154
11551155
221. password datasets [1](https://github.com/skyzyx/bad-passwords) and [2](https://github.com/danielmiessler/SecLists)
11561156
1157-
222. [is-utf8](https://github.com/wayfind/is-utf8/blob/master/is-utf8.js), [strip-bom-buf](https://github.com/sindresorhus/strip-bom-buf/blob/master/index.js), [strip-bom](https://github.com/sindresorhus/strip-bom/blob/master/index.js)
1157+
222. [is-utf8](https://github.com/wayfind/is-utf8/blob/master/is-utf8.js), [is-valid-utf8](http://stackoverflow.com/questions/28270310/how-to-easily-detect-utf8-encoding-in-the-string), [strip-bom-buf](https://github.com/sindresorhus/strip-bom-buf/blob/master/index.js), [strip-bom](https://github.com/sindresorhus/strip-bom/blob/master/index.js)
11581158
11591159
223. [read-glob](https://github.com/shinnn/node-read-glob)
11601160
@@ -1613,6 +1613,10 @@ Will need a `tools` directory in individual repositories to
16131613
- how will that work in terms of dep install within the context of the larger project?
16141614
- [module-deps](https://github.com/substack/module-deps)
16151615
1616+
* [list-broken-requires](https://github.com/Jam3/list-broken-requires/blob/master/index.js)
1617+
1618+
* [detect-import-require](https://github.com/Jam3/detect-import-require)
1619+
16161620
7. can updating the version be automated?
16171621
16181622

lib/node_modules/@stdlib/string/remove-utf-8-bom/README.md

Lines changed: 97 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/bin/cli

Lines changed: 81 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/bin/opts.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/bin/usage.txt

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/examples/index.js

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/lib/index.js

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/lib/remove_utf_8_bom.js

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/string/remove-utf-8-bom/package.json

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)