@visactor/vtable-gantt
Version:
canvas table width high performance
12 lines (9 loc) • 388 B
JavaScript
import { isNode } from "../gantt-helper";
export let defaultPixelRatio = 1;
export function getPixelRatio() {
return isNode ? defaultPixelRatio = 1 : (defaultPixelRatio = Math.ceil(window.devicePixelRatio || 1),
defaultPixelRatio > 1 && defaultPixelRatio % 2 != 0 && (defaultPixelRatio += 1)),
defaultPixelRatio;
}
getPixelRatio();
//# sourceMappingURL=pixel-ratio.js.map