From 7cc85d9c4a172ce4efba910e8ad4ca848542ce8f Mon Sep 17 00:00:00 2001 From: kozbial Date: Wed, 14 Jul 2021 15:02:20 -0700 Subject: [PATCH] clang-format core/utils/math.js --- core/utils/math.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/utils/math.js b/core/utils/math.js index 2bc28eefe..dade91c21 100644 --- a/core/utils/math.js +++ b/core/utils/math.js @@ -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 +};