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 +};