isZero.js (285B)
1 export var isZeroDocs = { 2 name: 'isZero', 3 category: 'Utils', 4 syntax: ['isZero(x)'], 5 description: 'Test whether a value is zero.', 6 examples: ['isZero(2)', 'isZero(0)', 'isZero(-4)', 'isZero([3, 0, -2, 0])'], 7 seealso: ['isInteger', 'isNumeric', 'isNegative', 'isPositive'] 8 };