UNPKG

331 BJavaScriptView Raw
1export var isNegativeDocs = {
2 name: 'isNegative',
3 category: 'Utils',
4 syntax: ['isNegative(x)'],
5 description: 'Test whether a value is negative: smaller than zero.',
6 examples: ['isNegative(2)', 'isNegative(0)', 'isNegative(-4)', 'isNegative([3, 0.5, -2])'],
7 seealso: ['isInteger', 'isNumeric', 'isPositive', 'isZero']
8};
\No newline at end of file