+Type Definition
+
+function stripBom(str: string): string;
+
+
+
+|Name |Desc |
+|------|---------------|
+|str |String to strip|
+|return|Result string |
+
+```javascript
+stripBom('\uFEFFlicia'); // -> 'licia'
+```
+
## stripCmt
Strip comments from source code.
diff --git a/DOC_CN.md b/DOC_CN.md
index 59b0a711..d62c89c7 100644
--- a/DOC_CN.md
+++ b/DOC_CN.md
@@ -11922,6 +11922,26 @@ stringifyAll(function test() {}); // -> '{"value":"function test() {}","type":"F
stripAnsi('\u001b[4mcake\u001b[0m'); // -> 'cake'
```
+## stripBom
+
+清除 UTF-8 BOM。
+
+