UNPKG

369 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.getCanvasContext = void 0;
4var ctx;
5/**
6 * 获取 canvas context
7 */
8function getCanvasContext() {
9 if (!ctx) {
10 ctx = document.createElement('canvas').getContext('2d');
11 }
12 return ctx;
13}
14exports.getCanvasContext = getCanvasContext;
15//# sourceMappingURL=context.js.map
\No newline at end of file