Small collection of [type predicates](https://www.typescriptlang.org/docs/handbook/2/narrowing.html#using-type-predicates) and [assertion functions](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions).
Small collection of type predicates
and assertion functions.
Helps working with possibly undefined types generated from GraphQL queries.
This library has its own concept called "nil" which means null or undefined.
> CS 101: Asserting means throwing and crashing if the assertion condition is not met
notNil()Type predicate for checking nil values
``tsx
import { notNil } from "@valu/assert";
function fn(text: string | null | undefined) {
if (notNil(text)) {
text.toUpperCase(); // ok!
}
}
`
which is almost the same as
`tsx`
function fn(text: string | null | undefined) {
if (text) {
text.toUpperCase(); // ok!
}
}
but it will allow an empty string "" since it is not nil.
But its most powerful use case is when used as a type predicate in .filter():
`tsx
type Node = { value: number } | null | undefined;
const nodes: Nodes[] = [null, undefined, { value: 1 }];
nodes.filter(notNil).map((node) => {
node.value; // ok!
});
`
Use when mapping GraphQL node lists!
Assertion function for removing nil values.
`tsx
import { assertNotNil } from "@valu/assert";
function fn(item: { value: number } | null | undefined) {
assertNotNil(item);
item.value; // ok!
}
`
Use when you know the value cannot be nil
Assert that the target is explicitly of the given type
`tsx
import { assertIs } from "@valu/assert";
function fn(item: { value: number } | boolean | null) {
assertIs(item, false as const);
item; // item === false
}
`
Can be used to assert discriminated unions
`tsx
type Item =
| {
type: "post";
postTitle: string;
}
| {
type: "page";
pageTitle: string;
};
function fn(item: Item) {
item.postTitle; // Error!
assertIs(item.type, "post" as const);
item.postTitle; // ok!
}
function fn2(item: Item) {
item.pageTitle; // Error!
assertIs(item.type, "page" as const);
item.pageTitle; // ok!
}
`
GraphQL node connections have often types like this.
Throw if the environment is a web browser. Used assert that server-side code is
not accidentally loaded into the browser bundles.
Plain assert function with offsettable stack for better error messages like in:
`tsx
import { assert } from "@valu/assert";
function assertCustom() {
assert(true === false, "Fail", 2);
}
`
Assert that the given value is not type of any
`ts
import { assertNotAny } from "@valu/assert";
const value: any = "wat";
// Produces type error
assertNotAny(value);
const value = "wat";
// ok because is string
assertNotAny(value);
`
Assert that the given value is not type of any
`ts
import { assertType } from "@valu/assert";
const value: string = "wat";
// Produces type error because string is not assignable to number
assertType
const value = "wat";
// ok
assertType
``