StrictisNilOn this pageisNilisNil variable Checks if the given value is null or undefined. Signature: isNil: <T>(a: T) => a is Include<T, null | undefined> Example isNil(1); // falseisNil('1'); // falseisNil(undefined); // trueisNil(null); // true Open Source Code