1
0
mirror of https://github.com/Azure/setup-helm.git synced 2026-07-08 09:21:37 +00:00
Files
2022-01-26 17:16:26 -05:00

15 lines
283 B
TypeScript

/**
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;