UNPKG

@streetscape.gl/monochrome

Version:

A toolkit of React components for streetscape.gl

11 lines (9 loc) 228 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clamp = clamp; function clamp(value, min, max) { return value < min ? min : value > max ? max : value; } //# sourceMappingURL=math.js.map