mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-01 11:48:36 -05:00
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
var DATA_URI_PATTERN = /^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;
|
|
|
|
function matchDataUri(uri) {
|
|
return DATA_URI_PATTERN.exec(uri);
|
|
}
|
|
|
|
module.exports = matchDataUri;
|