Add node modules and compiled JavaScript from main
This commit is contained in:
parent
1021f818b9
commit
feeb5f7b58
7748 changed files with 1825934 additions and 2 deletions
14
node_modules/strip-bom/index.d.ts
generated
vendored
Normal file
14
node_modules/strip-bom/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
Strip UTF-8 [byte order mark](https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8) (BOM) from a string.
|
||||
|
||||
@example
|
||||
```
|
||||
import stripBom = require('strip-bom');
|
||||
|
||||
stripBom('\uFEFFunicorn');
|
||||
//=> 'unicorn'
|
||||
```
|
||||
*/
|
||||
declare function stripBom(string: string): string;
|
||||
|
||||
export = stripBom;
|
Loading…
Add table
Add a link
Reference in a new issue