k-l-lambda's picture
updated node_modules
4cadbaf
raw
history blame contribute delete
175 Bytes
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)
}