UNPKG

pixi.js

Version:

PixiJS — The HTML5 Creation Engine =============

15 lines (13 loc) 315 B
"use strict"; function checkDataUrl(url, mimes) { if (Array.isArray(mimes)) { for (const mime of mimes) { if (url.startsWith(`data:${mime}`)) return true; } return false; } return url.startsWith(`data:${mimes}`); } export { checkDataUrl }; //# sourceMappingURL=checkDataUrl.mjs.map