UNPKG

detect-features

Version:

Detect and report browser and hardware features.

9 lines (7 loc) 197 B
// @ts-check /** * Gets the browser window width and height * * @returns {number[]} Browser [width, height] pair */ export default (() => [window.innerWidth, window.innerHeight] || [0, 0])();