UNPKG

bump-ts

Version:

![version](https://img.shields.io/npm/v/bump-ts) ![maintenance](https://img.shields.io/maintenance/yes/2021) ![open-issues](https://img.shields.io/github/issues-raw/hood/bump.ts)

4 lines (3 loc) 129 B
export default function nearest(x: number, a: number, b: number): number { return Math.abs(a - x) < Math.abs(b - x) ? a : b; }