UNPKG
telegram-free
Version:
latest (2.0.5)
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.3
Sends message by Telegram API and SMS by the free-mobile API
telegram-free
/
src
/
Tools.ts
11 lines
(9 loc)
•
234 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
Tools
{
/** * Removes accents in the passed parameter *
@param
str */
public
static
removeAccents
(
str
:
string
):
string
{
return
str.
normalize
(
"NFD"
).
replace
(/[\u0300-\u036f]/g,
""
); } }