# assertGreaterThanOrEqual Source: https://smartassertions.dev/assertions/assertGreaterThanOrEqual/ Index of every page: https://smartassertions.dev/llms.txt Assert that a numeric value is greater than or equal to the expected value, with type-narrowing. ## Usage ```ts import { assertGreaterThanOrEqual } from "@kensio/smartass"; const attempts: unknown = 1; assertGreaterThanOrEqual(attempts, 1); // attempts is now narrowed to number | bigint ``` ## Source Source file: [`src/assert/greater-than-or-equal/greater-than-or-equal.assert.ts`](https://github.com/KensioSoftware/smartass/blob/main/src/assert/greater-than-or-equal/greater-than-or-equal.assert.ts)