PATH:
usr
/
local
/
lib
/
node_modules
/
npm
/
node_modules
/
gauge
'use strict' var validate = require('aproba') var renderTemplate = require('./render-template.js') var wideTruncate = require('./wide-truncate') var stringWidth = require('string-width') module.exports = function (theme, width, completed) { validate('ONN', [theme, width, completed]) if (completed < 0) completed = 0 if (completed > 1) completed = 1 if (width <= 0) return '' var sofar = Math.round(width * completed) var rest = width - sofar var template = [ {type: 'complete', value: repeat(theme.complete, sofar), length: sofar}, {type: 'remaining', value: repeat(theme.remaining, rest), length: rest} ] return renderTemplate(width, template, theme) } // lodash's way of repeating function repeat (string, width) { var result = '' var n = width do { if (n % 2) { result += string } n = Math.floor(n / 2) /*eslint no-self-assign: 0*/ string += string } while (n && stringWidth(result) < width) return wideTruncate(result, width) }
[-] progress-bar.js
[edit]
[-] theme-set.js
[edit]
[-] set-immediate.js
[edit]
[+]
..
[-] has-color.js
[edit]
[-] template-item.js
[edit]
[+]
node_modules
[-] base-theme.js
[edit]
[-] package.json
[edit]
[-] wide-truncate.js
[edit]
[-] themes.js
[edit]
[-] spin.js
[edit]
[-] index.js
[edit]
[-] plumbing.js
[edit]
[-] error.js
[edit]
[-] render-template.js
[edit]
[-] set-interval.js
[edit]
[-] README.md
[edit]
[-] process.js
[edit]
[-] LICENSE
[edit]
[-] CHANGELOG.md
[edit]