UNPKG
@codersrank/timeline
Version:
latest (0.9.2)
0.9.2
0.9.1
0.9.0
Codersrank Timeline Widget
github.com/codersrank-org/timeline-widget
codersrank-org/timeline-widget
@codersrank/timeline
/
esm
/
shared
/
sanitize-description.js
7 lines
(6 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
var
sanitizeDescription =
function
sanitizeDescription
(
html
) {
if
(html ===
void
0
) { html =
''
; }
return
(html ||
''
).
replace
(
/</g
,
'<'
).
replace
(
/>/g
,
'>'
).
replace
(
/\n/g
,
'<br>'
); };