simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

isNaN.js (420B)


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