UNPKG
traffic-light
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.0
1.0.0
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
A status traffic light for monitoring your site
juliangruber/traffic-light
traffic-light
/
lib
/
color.js
5 lines
•
135 B
JavaScript
View Raw
1
2
3
4
5
module
.exports =
function
(err, status, dt)
{
if
(err ||
status
!=
200
)
return
'red'
if
(dt <
0
)
return
'yellow'
return
'green'
}