UNPKG
is-negative
Version:
latest (2.1.0)
2.1.0
2.0.2
2.0.1
2.0.0
1.0.1
1.0.0
Check if something is a negative number
github.com/kevva/is-negative
kevva/is-negative
is-negative
/
index.js
5 lines
(4 loc)
•
106 B
JavaScript
View Raw
1
2
3
4
5
'use strict'
;
module
.
exports
=
function
(
n
) {
return
toString.
call
(n) ===
'[object Number]'
&& n <
0
; };