Advertisement

核弹发射代码

阅读量:
在这里插入图片描述
复制代码
    const slog = require('single-line-log').stdout;
    
    class ProgressBar {
      constructor(description, barLength) {
    this.description = description || 'Progress';
    this.barLength = barLength || 25;
      }
      render (options) {
    const percent = (options.completed / options.total).toFixed(4);
    const cell_num = Math.floor(percent * this.barLength);
    
    let cell = '';
    for (let i = 0; i < cell_num; i++) {
      cell += '█';
    }
    
    let empty = '';

全部评论 (0)

还没有任何评论哟~