UNPKG

477 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.isPositiveDocs = void 0;
7var isPositiveDocs = {
8 name: 'isPositive',
9 category: 'Utils',
10 syntax: ['isPositive(x)'],
11 description: 'Test whether a value is positive: larger than zero.',
12 examples: ['isPositive(2)', 'isPositive(0)', 'isPositive(-4)', 'isPositive([3, 0.5, -2])'],
13 seealso: ['isInteger', 'isNumeric', 'isNegative', 'isZero']
14};
15exports.isPositiveDocs = isPositiveDocs;
\No newline at end of file