Although there are restrictions on using `is.truthy()` as a type guard function, `is.falsy()` could be a type guard function. ```ts type Falsy = false | 0 | 0n | '' | null | undefined; is.falsy = (value: unknown): value is Falsy => !value; ```