@yookue/ts-lang-utils
    Preparing search index...

    Function isNotPositive

    • Returns whether the given value is not positive

      Parameters

      • Optionalvalue: number

        the number value to check

      Returns boolean

      whether the given value is not positive

      David Hsing

      isNotPositive(1);    // false
      isNotPositive(0); // true
      isNotPositive(-1); // true