Rocky_Mountain_Vending/.pnpm-store/v10/files/03/ba8be8d75f8b7631d83b0026a2ccf65f9ff6de3f2b6649b43a0c28b49c3285f88f91a4de09bb0be40567e16977d216bce0a76745179179130667118e5db10a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

22 lines
460 B
Text

import type {GreaterThan} from './greater-than';
/**
Returns a boolean for whether a given number is less than or equal to another number.
@example
```
import type {LessThanOrEqual} from 'type-fest';
LessThanOrEqual<1, -5>;
//=> false
LessThanOrEqual<1, 1>;
//=> true
LessThanOrEqual<1, 5>;
//=> true
```
*/
export type LessThanOrEqual<A extends number, B extends number> = number extends A | B
? never
: GreaterThan<A, B> extends true ? false : true;