MCPcopy
hub / github.com/VincentGarreau/particles.js / clamp

Function clamp

particles.js:1464–1466  ·  view source on GitHub ↗
(number, min, max)

Source from the content-addressed store, hash-verified

1462};
1463
1464function clamp(number, min, max) {
1465 return Math.min(Math.max(number, min), max);
1466};
1467
1468function isInArray(value, array) {
1469 return array.indexOf(value) > -1;

Callers 1

pJSFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…