File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -474,9 +474,9 @@ rbush.prototype = {
474474 format = format . map (
475475 function ( f )
476476 {
477- return f . substring ( 1 )
477+ return f . substring ( 1 ) ;
478478 }
479- )
479+ ) ;
480480
481481 // Do not use string-generated Functions for CSP policies
482482 // Instead a combination of anonymous functions and grabbing properties
@@ -486,12 +486,12 @@ rbush.prototype = {
486486
487487 var mkCompareFn = function ( attr ) {
488488 return function ( a , b ) {
489- return a [ attr ] - b [ attr ]
490- }
491- }
489+ return a [ attr ] - b [ attr ] ;
490+ } ;
491+ } ;
492492
493- this . compareMinX = mkCompareFn ( format [ 0 ] )
494- this . compareMinY = mkCompareFn ( format [ 1 ] )
493+ this . compareMinX = mkCompareFn ( format [ 0 ] ) ;
494+ this . compareMinY = mkCompareFn ( format [ 1 ] ) ;
495495
496496 this . toBBox = function ( a )
497497 {
@@ -500,8 +500,8 @@ rbush.prototype = {
500500 minY : a [ format [ 1 ] ] ,
501501 maxX : a [ format [ 2 ] ] ,
502502 maxY : a [ format [ 3 ] ] ,
503- }
504- }
503+ } ;
504+ } ;
505505 }
506506} ;
507507
You can’t perform that action at this time.
0 commit comments