| 123456789101112131415 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.getCanvasContext = void 0;
- var ctx;
- /**
- * 获取 canvas context
- */
- function getCanvasContext() {
- if (!ctx) {
- ctx = document.createElement('canvas').getContext('2d');
- }
- return ctx;
- }
- exports.getCanvasContext = getCanvasContext;
- //# sourceMappingURL=context.js.map
|