Skip to content

Commit

Permalink
Fix standard errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kodie committed Sep 27, 2017
1 parent 64bd48f commit 6b0dcd2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions gauge-gif.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,47 +2,47 @@

const ProgressImg = require('progress-img')

ProgressImg.prototype.disable = function() {
ProgressImg.prototype.disable = function () {
return this
}

ProgressImg.prototype.enable = function() {
ProgressImg.prototype.enable = function () {
return this
}

ProgressImg.prototype.getWidth = function() {
ProgressImg.prototype.getWidth = function () {
return this
}

ProgressImg.prototype.hide = function(cb) {
ProgressImg.prototype.hide = function (cb) {
return this
}

ProgressImg.prototype.isEnabled = function() {
ProgressImg.prototype.isEnabled = function () {
return this
}

ProgressImg.prototype.pulse = function(subsection) {
ProgressImg.prototype.pulse = function (subsection) {
return this
}

ProgressImg.prototype.setTheme = function(theme) {
ProgressImg.prototype.setTheme = function (theme) {
return this
}

ProgressImg.prototype.setTemplate = function(themes) {
ProgressImg.prototype.setTemplate = function (themes) {
return this
}

ProgressImg.prototype.setThemeset = function(themes) {
ProgressImg.prototype.setThemeset = function (themes) {
return this
}

ProgressImg.prototype.setWriteTo = function(writeTo, tty) {
ProgressImg.prototype.setWriteTo = function (writeTo, tty) {
return this
}

ProgressImg.prototype.show = function(section, completed) {
ProgressImg.prototype.show = function (section, completed) {
this._showing = true

var opts = {}
Expand Down

0 comments on commit 6b0dcd2

Please sign in to comment.