import mitt from 'mitt' export default class Sizes { constructor() { this.emitter = mitt() // Setup this.width = window.innerWidth this.height = window.innerHeight this.pixelRatio = Math.min(window.devicePixelRatio, 2) // Resize event window.addEventListener('resize', () => { this.width = window.innerWidth this.height = window.innerHeight this.pixelRatio = Math.min(window.devicePixelRatio, 2) this.emitter.emit('resize') }) } }