supercat666's picture
fixed igv
a5f860b
raw
history blame
No virus
157 Bytes
var HTTPS_RESOURCE_PATTERN = /^https:\/\//;
function isHttpsResource(uri) {
return HTTPS_RESOURCE_PATTERN.test(uri);
}
module.exports = isHttpsResource;