UNPKG

@streetscape.gl/monochrome

Version:

A toolkit of React components for streetscape.gl

4 lines 131 B
export function clamp(value, min, max) { return value < min ? min : value > max ? max : value; } //# sourceMappingURL=math.js.map