We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcba818 commit 0d487a0Copy full SHA for 0d487a0
src/index.js
@@ -192,7 +192,8 @@ function getLatestRelease() {
192
*
193
* @constructor
194
*/
195
-function githubReleaseNotes(options) {
+function GithubReleaseNotes(options) {
196
+ this.options = options || {};
197
// Silence is golden
198
}
199
@@ -215,6 +216,7 @@ githubReleaseNotes.prototype.init = function() {
215
216
});
217
};
218
219
+var githubReleaseNotes = new GithubReleaseNotes();
220
githubReleaseNotes.init();
221
-module.exports = githubReleaseNotes;
222
+module.exports = GithubReleaseNotes;
0 commit comments