UNPKG

ipull

Version:

The only file downloader you'll ever need. For node.js and the browser, CLI and library for fast and reliable file downloads.

4 lines 149 B
export function clamp(value, min = 0, max = Number.MAX_VALUE) { return Math.min(Math.max(value, min), max); } //# sourceMappingURL=numbers.js.map