Skip to content

Commit

Permalink
Update code to match styleguide
Browse files Browse the repository at this point in the history
  • Loading branch information
philipwalton committed Jan 12, 2021
1 parent e146cb8 commit d0c3535
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/finalMetrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

import {Metric} from '../types.js';

export const finalMetrics: WeakSet<Metric>|Set<Metric> = typeof WeakSet === 'function'
? new WeakSet()
: new Set();

export const finalMetrics: WeakSet<Metric> | Set<Metric> =
typeof WeakSet === 'function' ? new WeakSet() : new Set();

0 comments on commit d0c3535

Please sign in to comment.