UNPKG
ircgrampp
Version:
latest (0.4.3)
next (0.4.2)
0.4.3
0.4.2
0.3.0
0.3.0-beta2
0.2.0-rc1
0.1.9
0.1.8
0.1.3
0.1.1
0.1.0-beta
IRCGram++ is a complexly simple Telegram <-> IRC Gateway
github.com/exos/ircgrampp
exos/ircgrampp
ircgrampp
/
lib
/
util.js
10 lines
(8 loc)
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
escapeMarkdown
= escapeMarkdown;
function
escapeMarkdown
(
str
) {
return
str.
replace
(
/([`\*_\[])/g
,
`\\$1`
); }