mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
7 lines
190 B
JavaScript
Vendored
7 lines
190 B
JavaScript
Vendored
var DATA_URI_PATTERN = /^data:(\S*?)?(;charset=(?:(?!;charset=)[^;])+)?(;[^,]+?)?,(.+)/;
|
|
|
|
function matchDataUri(uri) {
|
|
return DATA_URI_PATTERN.exec(uri);
|
|
}
|
|
|
|
module.exports = matchDataUri;
|