Commit 3a34fe22647bc259e8f902bb86afcea5782a87a9

Authored by Adhidarma Hadiwinoto
1 parent ddd060d2cb
Exists in master

Perbesar circular buffer history jadi 1000

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

1 1 'use strict';
2 2  
3 3 const CircularBuffer = require("circular-buffer");
4   -const history = new CircularBuffer(200);
  4 +const history = new CircularBuffer(1000);
5 5  
6 6 function push(item) {
7 7 history.push(item);