Returns true
if the given string is an absolute URL, false
otherwise.
Use a regular expression to test if the string is an absolute URL.
代码片段
const isAbsoluteURL = str => /^[a-z][a-z0-9+.-]*:/.test(str);
使用样例
isAbsoluteURL('https://google.com'); // true
isAbsoluteURL('ftp://www.myserver.net'); // true
isAbsoluteURL('/foo/bar'); // false