Merge pull request #8665 from wallw-bits/fix-typecheck-rbush

Fix type check errors in RBush
This commit is contained in:
Tim Schaub
2018-09-20 11:09:07 -06:00
committed by GitHub

View File

@@ -233,7 +233,7 @@ class RBush {
concat(rbush) {
this.rbush_.load(rbush.rbush_.all());
for (const i in rbush.items_) {
this.items_[i | 0] = rbush.items_[i | 0];
this.items_[i] = rbush.items_[i];
}
}