UNPKG

something-random-on-discord

Version:
6 lines (5 loc) 132 B
const isURL = (link) => { if(!link) return; return link.match(/(https|http)(:\/\/)(\S)+/g) ? true : false } module.exports = isURL;