mirror of
https://github.com/wassname/talk.git
synced 2026-07-25 13:30:59 +08:00
6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
const linkRE = /(((http|ftp|https)\:\/\/)?([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?)/gmi;
|
|
|
|
const isLink = (s) => linkRE.test(s);
|
|
|
|
export default isLink;
|