2a63212759b8f07a9817bcd69032a89ad0d07837f76886931b86b01b24746ed98e01f809fc8dfec0b3a143ed200ebb7ebef8230d43c70b2b5d489a5cd3a092 156 B

1234567
  1. var NO_PROTOCOL_RESOURCE_PATTERN = /^\/\//;
  2. function hasProtocol(uri) {
  3. return !NO_PROTOCOL_RESOURCE_PATTERN.test(uri);
  4. }
  5. module.exports = hasProtocol;