isPositive

isPositive

Check whether the given number is positive or not.

Import

import { isPositive } from '@fullstacksjs/toolbox';

Signature

function isPositive(n: number): boolean {};

Examples

isPositive(0.1) // true
isPositive(1)   // true
isPositive(10)  // true
isPositive(-1)  // false
isPositive(0)   // false