CRISPRTool / igv_component /node_modules /clean-css /lib /utils /is-remote-resource.js
supercat666's picture
fixed igv
a5f860b
Raw
History Blame
244 Bytes
var REMOTE_RESOURCE_PATTERN = /^(\w+:\/\/|\/\/)/;
var FILE_RESOURCE_PATTERN = /^file:\/\//;
function isRemoteResource(uri) {
return REMOTE_RESOURCE_PATTERN.test(uri) && !FILE_RESOURCE_PATTERN.test(uri);
}
module.exports = isRemoteResource;