Skip to content

Commit

Permalink
refactor(ts): added ts style fix for src/histogram.ts (#354)
Browse files Browse the repository at this point in the history
refactor(ts): added ts style fix for src/histogram.ts
  • Loading branch information
vijay-qlogic authored and JustinBeckwith committed Nov 21, 2018
1 parent 0f0062a commit b642898
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/histogram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ export class Histogram {
length: number;
constructor(options?: HistogramOptions) {
this.options = Object.assign(
{
min: 10000,
max: 600000,
},
options
);
{
min: 10000,
max: 600000,
},
options);
this.data = new Map();
this.length = 0;
}
Expand Down

0 comments on commit b642898

Please sign in to comment.