UNPKG

@cassette/core

Version:

A simple, clean, and responsive visual wrapper for the HTML audio tag, built with React.

8 lines (6 loc) 268 B
function convertToNumberWithinIntervalBounds(number, min, max) { min = typeof min === 'number' ? min : -Infinity; max = typeof max === 'number' ? max : Infinity; return Math.max(min, Math.min(number, max)); } export default convertToNumberWithinIntervalBounds;