'use strict'; /** * @license Angular v * (c) 2010-2022 Google LLC. https://angular.io/ * License: MIT */ Zone.__load_patch('canvas', (global, Zone, api) => { const HTMLCanvasElement = global['HTMLCanvasElement']; if (typeof HTMLCanvasElement !== 'undefined' && HTMLCanvasElement.prototype && HTMLCanvasElement.prototype.toBlob) { api.patchMacroTask(HTMLCanvasElement.prototype, 'toBlob', (self, args) => { return { name: 'HTMLCanvasElement.toBlob', target: self, cbIdx: 0, args: args }; }); } });