Fix clamp csj usage

This commit is contained in:
2024-05-16 14:00:58 +02:00
parent 25ef6bdee6
commit 6f9073b2ac

View File

@@ -20,4 +20,4 @@ function clamp(min: number, value: number, max: number): number {
return value;
}
module.exports = clamp;
export default clamp;