supercat666's picture
fixed igv
a5f860b
raw
history blame
No virus
152 Bytes
var HTTP_RESOURCE_PATTERN = /^http:\/\//;
function isHttpResource(uri) {
return HTTP_RESOURCE_PATTERN.test(uri);
}
module.exports = isHttpResource;