[READ-ONLY] Mirror of https://github.com/probablykasper/k5kit. Utilities for TypeScript and Svelte
0

Configure Feed

Select the types of activity you want to include in your feed.

Add clamp_number

Kasper (Jun 27, 2025, 1:39 AM +0200) 0bf1b5e9 696e124e

+6
+6
src/lib/index.ts
··· 1 1 export { check_shortcut, check_modifiers, is_mac } from './shortcuts.ts' 2 2 export { auto_snapshot } from './auto-snapshot.ts' 3 3 export { KSelection } from './selection-js.ts' 4 + 5 + export function clamp_number(min: number, max: number, value: number) { 6 + if (value < min) return min 7 + if (value > max) return max 8 + return value 9 + }