Remove superfluous bitwise operations

This commit is contained in:
William Wall
2018-09-18 14:12:31 -06:00
parent 5910e4d207
commit 7ff974be2c

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];
}
}