UNPKG

eslint-plugin-comment-length

Version:

An ESLint plugin that provides rules that limit the line length of your comments

11 lines (9 loc) 186 B
const URL_REGEXP = /[^:/?#]:\/\/[^?#]/u; function isURL(str) { if (!str) { return false; } return URL_REGEXP.test(str); } export { isURL }; //# sourceMappingURL=is-url.js.map