A suite to track Project Diva score statistics and ratings / D4DJ event data.
 
 
 
 
 
 
projectdivar/server/node_modules/clamp/index.js

7 lines
187 B

module.exports = clamp
function clamp(value, min, max) {
return min < max
? (value < min ? min : value > max ? max : value)
: (value < max ? max : value > min ? min : value)
}