UNPKG

is-negative

Version:

Check if something is a negative number

5 lines (4 loc) 106 B
'use strict'; module.exports = function (n) { return toString.call(n) === '[object Number]' && n < 0; };