persona-community-5/.pnpm-store/v3/files/c9/6ebfc9e1eb3355635e7a0e42549273da57ae500a0180d6d5a01baf5279995ae5f41c59a00c7574e5c89e9d8f1f274d8f0de7d6e807238a85561155faafd0e2
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
177 B
Plaintext

// packages/core/number/src/number.ts
function clamp(value, [min, max]) {
return Math.min(max, Math.max(min, value));
}
export {
clamp
};
//# sourceMappingURL=index.mjs.map