hughsk / clamp

Clamp a value between two other values.
MIT License
39 stars 5 forks source link

Slightly more performant method #5

Closed wesleytodd closed 6 years ago

wesleytodd commented 8 years ago

http://jsperf.com/clamp-functions/19

Not entirely sure it matters, but I found this js perf and added your method to it. I can do the PR for this if you are interested.

function clamp(value, min, max) {
  return value < min ? min : value > max ? max : value;
}
hediyi commented 6 years ago

what if min > max?

wesleytodd commented 6 years ago

To be honest I don't even remember opening this issue, or why I did. Closing.