UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

6 lines (5 loc) 230 B
type Falsy = false | 0 | 0n | '' | null | undefined; type Truthy<T = unknown> = Exclude<T, Falsy>; export declare const isFalsy: (v?: unknown) => v is Falsy; export declare const isTruthy: (v?: unknown) => v is Truthy; export {};