UNPKG

k5kit

Version:

Utilities for TypeScript and Svelte

11 lines (10 loc) 324 B
export { check_shortcut, check_modifiers, is_mac } from './shortcuts.ts'; export { auto_snapshot } from './auto-snapshot.ts'; export { KSelection } from './selection-js.ts'; export function clamp_number(min, max, value) { if (value < min) return min; if (value > max) return max; return value; }