PHP 8.2.30
Preview: progress-bar.js Size: 998 B
//lib/node_modules/npm/node_modules/gauge/progress-bar.js

'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)
}

Directory Contents

Dirs: 1 × Files: 19

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:36:28
Edit Download
395 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
6.23 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
616 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
292 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
6.83 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
751 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
2.13 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
1.24 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
89 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
998 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
14.72 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
5.60 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
139 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
93 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
105 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download
1.86 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
3.61 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
1.51 KB lrw-r--r-- 2021-03-10 14:36:39
Edit Download
828 B lrw-r--r-- 2021-03-10 14:36:39
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).