Run all tests
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
import * as _ from 'lodash';
|
||||
|
||||
export class Queue<T> {
|
||||
private _store: T[] = [];
|
||||
constructor (store?: T[]) {
|
||||
this._store = store !== undefined ? store : [];
|
||||
this._store = store !== undefined ? _.cloneDeep(store) : [];
|
||||
}
|
||||
public pushBack(val: T): void {
|
||||
this._store.push(val);
|
||||
|
||||
Reference in New Issue
Block a user