UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

7 lines (5 loc) 172 B
/** * Returns true if the given string is an absolute URL, false otherwise. */ var isAbsoluteURL = str => /^[a-z][a-z0-9+.-]*:/.test(str); export default isAbsoluteURL;