UNPKG

device-navigation

Version:

Navigate HTML elements in two dimensions with non-pointer devices.

17 lines (16 loc) 229 B
/** * Just a wrapper for `>`. * * @category Internal */ export function greaterThan(a, b) { return a > b; } /** * Just a wrapper for `>`. * * @category Internal */ export function lessThan(a, b) { return a < b; }