ran prettier

This commit is contained in:
Greg Hysen
2019-06-26 14:01:24 -07:00
parent b756e723ea
commit a02f96c913
20 changed files with 657 additions and 433 deletions

View File

@@ -2,7 +2,7 @@ import * as _ from 'lodash';
export class Queue<T> {
private _store: T[] = [];
constructor (store?: T[]) {
constructor(store?: T[]) {
this._store = store !== undefined ? _.cloneDeep(store) : [];
}
public pushBack(val: T): void {