UNPKG
eazydict-bing
Version:
latest (2.1.0)
2.1.0
2.0.0
1.2.1
1.2.0
1.1.0
1.0.0-beta.10
1.0.0-beta.9
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.6
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
EazyDict Bing词典插件
github.com/keenwon/eazydict-bing
keenwon/eazydict-bing
eazydict-bing
/
lib
/
utils.js
18 lines
(14 loc)
•
310 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict'
// 移除 HTML 文本中的标签,合并多个空白为单个
function
removeTagsAndSpaces
(
html
) {
if
(!html ||
typeof
html !==
'string'
) {
return
html }
return
html .
replace
(
/<[^>]+?>/gm
,
''
) .
replace
(
/\s+/gm
,
' '
) .
trim
() }
module
.
exports
= { removeTagsAndSpaces }