UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

10 lines (7 loc) 177 B
/** * Clamps value inside range. */ function clamp(val, min, max){ return val < min? min : (val > max? max : val); } module.exports = clamp;