ts-null-or-undefined

v0.0.2
Best type safe way to check null or undefined in typescript

ts-null-or-undefined

Best way to check for null or undefined in typescript using a type guard. Can strip out null or undefine or complex types like T | null etc.

To use:

import Type from "ts-null-or-undefined";

let a: number | null = 0;

console.log(a*4); //Error: a might be null

if(!Type.isNullOrUndefined(a)){
    console.log(a*4); //Works
}

Metadata

  • ISC
  • Whatever
  • naqvitalha
  • released 11/10/2017

Downloads

Maintainers