chore(formatting): Fix formatting for math.ts (#10216)

This commit is contained in:
Abhi
2025-09-30 00:39:42 -04:00
committed by GitHub
parent ae51bbdae8
commit ddcbd0c2bd

View File

@@ -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;