Skip to content

Commit 97e7022

Browse files
committed
Remove usage of binding / prototype
1 parent f5265cd commit 97e7022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/explorers/qiitaItems.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class QiitaItemsProvider implements TreeDataProvider<NodeTypes> {
4848
*/
4949
public async expandItems () {
5050
const { value: items, done } = await this.itemsIterable.next();
51-
Array.prototype.push.apply(this.items, items);
51+
this.items.push(items);
5252
this.done = done;
5353
this.refresh();
5454
}

0 commit comments

Comments
 (0)