-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export modules under ./stats directory and add type definitions #47
Conversation
exports.EWMA = require('./exponentially_weighted_moving_average'); | ||
exports.ExponentiallyDecayingSample = require('./exponentially_decaying_sample'); | ||
exports.Sample = require('./sample'); | ||
exports.UniformSample = require('./uniform_sample'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please leave a new line here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
👍 |
7c7f089
to
792d3f7
Compare
exports.Sample = Stats.Sample; | ||
exports.UniformSample = Stats.UniformSample; | ||
|
||
exports.version = '0.1.12'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll find a way to automate this, should be pullable from package.json
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thank you for your contribution! Will include in 0.1.13
d'oh, I meant to approve, not request changes 🤦♂️. looks great :) |
Related to #46