UNPKG
atitor
Version:
latest (0.1.1)
0.1.1
0.1.0
♏ 一款现代化 Markdown 编辑器
b3log.org/vditor
Vanessa219/vditor
atitor
/
src
/
ts
/
util
/
code160to32.ts
5 lines
(4 loc)
•
129 B
text/typescript
View Raw
1
2
3
4
5
export
const
code160to32
= (
text
:
string
) => {
// 非打断空格转换为空格
return
text.
replace
(
/\u00a0/g
,
" "
); };