wishthis/node_modules/clean-css/lib/utils/has-protocol.js
2022-01-21 09:28:41 +01:00

7 lines
156 B
JavaScript

var NO_PROTOCOL_RESOURCE_PATTERN = /^\/\//;
function hasProtocol(uri) {
return !NO_PROTOCOL_RESOURCE_PATTERN.test(uri);
}
module.exports = hasProtocol;