UNPKG

temp-color

Version:

Convert any quantity to RGB color

12 lines (10 loc) 157 B
function checkRange (value) { if (value <= 0) { return 0; } if (value > 255) { return 255; } return value; } module.exports = checkRange;