chore: remove stripHtmlTag util

This commit is contained in:
redhoodsu
2019-10-26 19:27:11 +08:00
parent dcb90ff152
commit 27106028fd
2 changed files with 0 additions and 40 deletions

View File

@@ -2414,19 +2414,6 @@ When time is out, all remaining values will all be "Timeout".
stringifyAll(function test() {}); // -> '{"value":"function test() {}","type":"Function",...}'
```
## stripHtmlTag
Strip html tags from a string.
|Name |Type |Desc |
|------|------|---------------|
|str |string|String to strip|
|return|string|Result string |
```javascript
stripHtmlTag('<p>Hello</p>'); // -> 'Hello'
```
## throttle
Return a new throttled version of the passed function.