UNPKG

@squirrel-forge/ui-util

Version:

A collection of utilities, classes, functions and abstracts made for the browser and babel compatible.

10 lines (9 loc) 297 B
/** * Get orientation * @param {number} width - Width * @param {number} height - Height * @return {('square'|'landscape'|'portrait')} - Orientation string */ export function orientation( width, height ) { return width === height ? 'square' : width > height ? 'landscape' : 'portrait'; }