mirror of
https://github.com/wassname/talk.git
synced 2026-08-18 12:30:39 +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;
|