'use strict';
function setDataURLPrefix(data, mimeType, base64) {
if (mimeType === void 0) { mimeType = 'image/png'; }
if (base64 === void 0) { base64 = true; }
return "data:".concat(mimeType).concat(base64 ? ';base64' : '', ",").concat(data);
}
module.exports = setDataURLPrefix;