UNPKG
linguee
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.1
Bilingual word translation straight from Linguee website
github.com/fesnt/linguee
fesnt/linguee
linguee
/
utils
/
stringSanitizer.js
8 lines
(7 loc)
•
147 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
function
(
) {
return
{
removeNonBreakableSpace
:
function
(
str =
''
) {
return
str.
replace
(
/\u00A0/g
,
' '
); } }; };