MCPcopy
hub / github.com/webadderallorg/Recordly / clamp

Function clamp

src/components/video-editor/projectPersistence.ts:168–170  ·  view source on GitHub ↗
(value: number, min: number, max: number)

Source from the content-addressed store, hash-verified

166}
167
168function clamp(value: number, min: number, max: number) {
169 return Math.min(max, Math.max(min, value));
170}
171
172type PersistedDevMotionBlurSettings = {
173 zoomMotionBlurTuning?: unknown;

Callers 2

normalizeProjectEditorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected