检查是否为绝对URL
检查给定的字符串是否为绝对URL。
- 使用
RegExp.prototype.test()
来测试字符串是否为绝对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