UNPKG

traffic-light

Version:

A status traffic light for monitoring your site

5 lines 135 B
module.exports = function (err, status, dt) { if (err || status != 200) return 'red' if (dt < 0) return 'yellow' return 'green' }