4 lines
106 B
JavaScript
4 lines
106 B
JavaScript
|
|
module.exports = function getRatio() {
|
|
return window.devicePixelRatio ? window.devicePixelRatio : 2;
|
|
}; |