pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
at main 5 lines 119 B view raw
1export function isNotNull<T>(obj: T | null): obj is T { 2 return obj != null; 3} 4 5export type ValuesOf<T> = T[keyof T];