isNot: IsNot {}

isNot: IsNot {}

The object consists of isNot functions.

is-not.object.ts
const isNot: IsNot = Object.freeze({
  boolean: isNotBoolean,
  defined: isNotDefined,
  function: isNotFunction,
  null: isNotNull,
  number: isNotNumber,
  string: isNotString,
  undefined: isNotUndefined
});

Last updated