UNPKG
xbpr
Version:
latest (0.0.1)
0.0.1
xbp react ui by @arco-design/web-react
xbpr
/
es
/
_util
/
fillNBSP.js
5 lines
(4 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
// Replace empty string to
export
default
function
(
str
) {
return
typeof
str ===
'string'
? str.
replace
(
/\s{2,}/g
,
function
(
$0
) {
return
'\u00A0'
.
repeat
($0.
length
); }) : str; }