download
raw
618 Bytes
'use strict';
/**
* Determines whether the specified URL is absolute
*
* @param {string} url The URL to test
*
* @returns {boolean} True if the specified URL is absolute, otherwise false
*/
export default function isAbsoluteURL(url) {
// A URL is considered absolute if it begins with "<scheme>://" or "//" (protocol-relative URL).
// RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed
// by any combination of letters, digits, plus, period, or hyphen.
if (typeof url !== 'string') {
return false;
}
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
}

Xet Storage Details

Size:
618 Bytes
·
Xet hash:
e84c1c289dab0dbe98df0266bb486499e2ca0dcf5985a01eb8046be27948b9b6

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.