CRISPRTool / igv_component /node_modules /clean-css /lib /utils /is-data-uri-resource.js
supercat666's picture
fixed igv
a5f860b
Raw
History Blame
205 Bytes
var DATA_URI_PATTERN = /^data:(\S{0,31}?)?(;charset=(?:(?!;charset=)[^;])+)?(;[^,]+?)?,(.+)/;
function isDataUriResource(uri) {
return DATA_URI_PATTERN.test(uri);
}
module.exports = isDataUriResource;