From e86d1d5e45b5c476cccd211902899309faeb64d8 Mon Sep 17 00:00:00 2001 From: Vadim Date: Fri, 6 Aug 2021 23:48:44 +0300 Subject: [PATCH] #49 : Code cleanup --- src/utils/math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/math.js b/src/utils/math.js index 09bea67..e70bec2 100644 --- a/src/utils/math.js +++ b/src/utils/math.js @@ -3,4 +3,4 @@ export const getDistance = (p1, p2) => { const y = p2.y - p1.y; return Math.sqrt((x * x) + (y * y)); -} \ No newline at end of file +}