blob: c6938f57da13c1f292ba944cc790019563f55ea1 [file] [log] [blame]
var HTTPS_RESOURCE_PATTERN = /^https:\/\//;
function isHttpsResource(uri) {
return HTTPS_RESOURCE_PATTERN.test(uri);
}
module.exports = isHttpsResource;