linwenling
2023-08-05 8f2a8595313aaa7a1b5320a8add4eef4dfe942c4
1
2
3
4
module.exports = function isAbsoluteUrl (url) {
  // A URL is considered absolute if it begins with "<scheme>://" or "//"
  return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url)
}