Skip to content

Commit 6c6d5f4

Browse files
author
jdotrjs
committed
somebody forgot their ;s
1 parent d089e16 commit 6c6d5f4

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/structs/RTree.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)