UNPKG

pixi.js

Version:

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

15 lines (12 loc) 396 B
'use strict'; "use strict"; const inWorker = "WorkerGlobalScope" in globalThis && globalThis instanceof globalThis.WorkerGlobalScope; function testVideoFormat(mimeType) { if (inWorker) { return false; } const video = document.createElement("video"); return video.canPlayType(mimeType) !== ""; } exports.testVideoFormat = testVideoFormat; //# sourceMappingURL=testVideoFormat.js.map