15 lines
558 B
JavaScript
Executable file
15 lines
558 B
JavaScript
Executable file
'use strict';
|
|
/**
|
|
* @license Angular v<unknown>
|
|
* (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 };
|
|
});
|
|
}
|
|
});
|