isNaN.js (288B)
1 export var isNaNDocs = { 2 name: 'isNaN', 3 category: 'Utils', 4 syntax: ['isNaN(x)'], 5 description: 'Test whether a value is NaN (not a number)', 6 examples: ['isNaN(2)', 'isNaN(0 / 0)', 'isNaN(NaN)', 'isNaN(Infinity)'], 7 seealso: ['isNegative', 'isNumeric', 'isPositive', 'isZero'] 8 };