blob: fa1b61fd57ad1ebee52ebcb683d0d32a83a5f5b8 [file] [log] [blame]
Tim van der Lippe652ccb72021-05-27 17:07:12 +01001var NO_PROTOCOL_RESOURCE_PATTERN = /^\/\//;
2
3function hasProtocol(uri) {
4 return !NO_PROTOCOL_RESOURCE_PATTERN.test(uri);
5}
6
7module.exports = hasProtocol;