diff --git a/packages/cli/src/utils/math.ts b/packages/cli/src/utils/math.ts index e1297590f6..f067a4ef95 100644 --- a/packages/cli/src/utils/math.ts +++ b/packages/cli/src/utils/math.ts @@ -11,4 +11,5 @@ * @param end The end value. * @param t The interpolation amount (typically between 0 and 1). */ -export const lerp = (start: number, end: number, t: number): number => start + (end - start) * t; +export const lerp = (start: number, end: number, t: number): number => + start + (end - start) * t;