Skip to content

Commit

Permalink
Merge pull request #23 from lukebayes/patch-1
Browse files Browse the repository at this point in the history
Stop leaking globals into other projects.
  • Loading branch information
mikejihbe committed Feb 25, 2015
2 parents 5624828 + 023a405 commit 290204d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions metrics/timer.js
@@ -1,6 +1,7 @@
var Meter = require('./meter');
Histogram = require('./histogram')
ExponentiallyDecayingSample = require('../stats/exponentially_decaying_sample');
var Meter = require('./meter'),
Histogram = require('./histogram'),
ExponentiallyDecayingSample = require('../stats/exponentially_decaying_sample');

/*
* Basically a timer tracks the rate of events and histograms the durations
*/
Expand Down

0 comments on commit 290204d

Please sign in to comment.