Sha256: 582b7c7d1a79caa90e13a7e2c52c6fb99237fd8b94c4c50f36646f652cd8e86f

Contents?: true

Size: 480 Bytes

Versions: 21

Compression:

Stored size: 480 Bytes

Contents

// default value format (apply autopadding)

// format valueset
module.exports = function formatValue(v, options, type){
    // no autopadding ? passthrough
    if (options.autopadding !== true){
        return v;
    }

    // padding
    function autopadding(value, length){
        return (options.autopaddingChar + value).slice(-length);
    }

    switch (type){
        case 'percentage':
            return autopadding(v, 3);

        default:
            return v;
    }
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
appmap-0.72.2 ./node_modules/cli-progress/lib/format-value.js
appmap-0.72.1 ./node_modules/cli-progress/lib/format-value.js
appmap-0.72.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.71.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.70.2 ./node_modules/cli-progress/lib/format-value.js
appmap-0.70.1 ./node_modules/cli-progress/lib/format-value.js
appmap-0.70.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.69.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.68.2 ./node_modules/cli-progress/lib/format-value.js
appmap-0.68.1 ./node_modules/cli-progress/lib/format-value.js
appmap-0.68.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.67.1 ./node_modules/cli-progress/lib/format-value.js
appmap-0.67.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.66.2 ./node_modules/cli-progress/lib/format-value.js
appmap-0.66.1 ./node_modules/cli-progress/lib/format-value.js
appmap-0.66.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.65.1 ./node_modules/cli-progress/lib/format-value.js
appmap-0.65.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.64.0 ./node_modules/cli-progress/lib/format-value.js
appmap-0.63.0 ./node_modules/cli-progress/lib/format-value.js