AnimationCore/node_modules/strip-bom/index.d.ts
3944Realms 7068a883d9 build: 构建
创建github工作流
2026-03-01 21:38:41 +08: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;