UNPKG

html-squircle

Version:

Utilities for generating superellipse squircles in the form of SVG strings, to be used in clip-path and background inline styles.

6 lines (5 loc) 135 B
export const clamp = ( value: number, minimum: number, maximum: number, ): number => Math.min(maximum, Math.max(minimum, value))