lgtome/rm-node-modules-cli

View on GitHub
src/helpers/bytesToMb.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export function bytesToMb(bytes, decimals = 2) {
  if (bytes === 0) return '0 Bytes'

  const mb = 1e-6

  return `${(bytes * mb).toFixed(decimals)} mb`
}