mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-02-09 08:28:29 -06:00
5 lines
175 B
JavaScript
5 lines
175 B
JavaScript
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)
|
|
}
|