FabienDanieau's picture
first commit
2434dca
raw
history blame
152 Bytes
var HTTP_RESOURCE_PATTERN = /^http:\/\//;
function isHttpResource(uri) {
return HTTP_RESOURCE_PATTERN.test(uri);
}
module.exports = isHttpResource;