UNPKG
nusp-arco-design
Version:
latest (2.66.0-beta.2)
2.66.0-beta.2
Arco Design React UI Library.
arco.design
zhanghui-space/arco-design
nusp-arco-design
/
es
/
_util
/
fillNBSP.js
7 lines
(6 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
// Replace empty string to
export
default
function
(
str
) {
return
typeof
str ===
'string'
? str.
replace
(
/(\s{2,})|(\s{1,}$)/g
,
function
(
$0
) {
return
'\u00A0'
.
repeat
($0.
length
); }) : str; }