pixi.js
Version:
PixiJS — The HTML5 Creation Engine =============
13 lines (11 loc) • 367 B
JavaScript
;
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) !== "";
}
export { testVideoFormat };
//# sourceMappingURL=testVideoFormat.mjs.map