Fix eslint --fix

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/21833/head
Aaron Raimist 2018-10-26 23:03:57 -05:00
parent 5f3b03c85a
commit e61e7f2626
No known key found for this signature in database
GPG Key ID: 37419210002890EF
1 changed files with 1 additions and 3 deletions

View File

@ -4,9 +4,7 @@ const Velocity = require('velocity-vector');
// We only use easeOutBounce (easeInBounce is just sort of nonsensical) // We only use easeOutBounce (easeInBounce is just sort of nonsensical)
function bounce( p ) { function bounce( p ) {
let pow2; let pow2;
let bounce = 4;
let bounce = 4;
while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) { while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {
// just sets pow2 // just sets pow2