From e61e7f2626c8ddecb04a8d3a2bb61e5c71709e7b Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Fri, 26 Oct 2018 23:03:57 -0500 Subject: [PATCH] Fix eslint --fix Signed-off-by: Aaron Raimist --- src/VelocityBounce.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/VelocityBounce.js b/src/VelocityBounce.js index 732550cfcb..b9513249b8 100644 --- a/src/VelocityBounce.js +++ b/src/VelocityBounce.js @@ -4,9 +4,7 @@ const Velocity = require('velocity-vector'); // We only use easeOutBounce (easeInBounce is just sort of nonsensical) function bounce( p ) { let pow2; - - -let bounce = 4; + let bounce = 4; while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) { // just sets pow2