UNPKG

ignore-case

Version:

A JavaScript micro library that provides case-insensitive string helpers

6 lines (4 loc) 115 B
'use strict'; module.exports = function clamp(value, min, max) { return Math.min(Math.max(value, min), max); };