UNPKG
discord-tool
Version:
latest (3.0.0)
3.0.0
2.0.0
0.0.0-claim
A best tool for discord bot
github.com/loirenn/discord-tool
loirenn/discord-tool
discord-tool
/
dist
/
libraries
/
checkURL.js
10 lines
(9 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
CheckURL
=
void
0
;
const
urlRegex_1 =
require
(
"../urlRegex"
);
function
CheckURL
(
text
) {
return
urlRegex_1.
URLRegex
.
test
(text); }
exports
.
CheckURL
=
CheckURL
; ;