UNPKG

screen-size

Version:
12 lines (9 loc) 187 B
'use strict' var window = require('global/window') var screen = window.screen || {} module.exports = function screenSize () { return { x: screen.width, y: screen.height } }