Skip to content

Instantly share code, notes, and snippets.

@mccv
Created April 26, 2012 02:11
Show Gist options
  • Save mccv/2495209 to your computer and use it in GitHub Desktop.
Save mccv/2495209 to your computer and use it in GitHub Desktop.
Minimum Viable Stats Package for Node
var stats = {
time : function(metric, f) {
f()
},
get_time_ms: function(metric) {
// it's async, so everything is fast
return 0
}
}
@mccv
Copy link
Author

mccv commented Apr 26, 2012 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment