function assertNotNull()

in src/index.ts [452:456]


function assertNotNull<A>(x: A | undefined, msg: string = 'Null value error'): asserts x is NonNullable<A> {
  if (x === null || x === undefined) {
    throw new Error(msg);
  }
}