UNPKG

k6-node

Version:

CLI tool that enables k6 installation via npm packages

13 lines (12 loc) 418 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatBytes = void 0; const formatBytes = (bytes) => { if (bytes === 0) return '0 B'; const k = 1024; const sizes = ['B', 'KB', 'MB', 'GB']; const i = Math.floor(Math.log(bytes) / Math.log(k)); return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i]; }; exports.formatBytes = formatBytes;