UNPKG
@bee-design/ui
Version:
latest (1.1.0)
1.1.0
1.0.22
1.0.21
1.0.20
Bee Design React UI Library.
bee.design
@bee-design/ui
/
es
/
_util
/
fillNBSP.js
7 lines
(6 loc)
•
211 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,}/g
,
function
(
$0
) {
return
'\u00A0'
.
repeat
($0.
length
); }) : str; }