isPositive.js 477 B

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