isNaN.js 420 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.isNaNDocs = void 0;
  6. var isNaNDocs = {
  7. name: 'isNaN',
  8. category: 'Utils',
  9. syntax: ['isNaN(x)'],
  10. description: 'Test whether a value is NaN (not a number)',
  11. examples: ['isNaN(2)', 'isNaN(0 / 0)', 'isNaN(NaN)', 'isNaN(Infinity)'],
  12. seealso: ['isNegative', 'isNumeric', 'isPositive', 'isZero']
  13. };
  14. exports.isNaNDocs = isNaNDocs;