frontend/.pnpm-store/v3/files/51/2a63212759b8f07a9817bcd69032a89ad0d07837f76886931b86b01b24746ed98e01f809fc8dfec0b3a143ed200ebb7ebef8230d43c70b2b5d489a5cd3a092

8 lines
156 B
Plaintext

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