import { Bounds } from './index' export const inside = (bounds: Bounds) => (value: N) => { return value >= bounds.min && value <= bounds.max }