clang-format core/utils/math.js

This commit is contained in:
kozbial
2021-07-14 15:02:20 -07:00
committed by Monica Kozbial
parent 06cbde1dba
commit 7cc85d9c4a

View File

@@ -56,4 +56,8 @@ const clamp = function(lowerBound, number, upperBound) {
return Math.max(lowerBound, Math.min(number, upperBound));
};
exports = {toRadians, toDegrees, clamp};
exports = {
toRadians,
toDegrees,
clamp
};