UNPKG
@antv/dom-util
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
A common util collection for antv projects
github.com/antvis/util
antvis/util
@antv/dom-util
/
src
/
get-ratio.ts
5 lines
(3 loc)
•
112 B
text/typescript
View Raw
1
2
3
4
5
export
default
function
getRatio
(
): number {
return
window
.
devicePixelRatio
?
window
.
devicePixelRatio
:
2
; }