Skip to content

Instantly share code, notes, and snippets.

@PofMagicfingers
PofMagicfingers / readMongoDBSize.js
Last active June 30, 2024 14:23 — forked from ovntatar/readMongoDBSize.js
read human readable size from MongoDB collections
# inspired by https://gist.github.com/joeyAghion/6511184
function getReadableFileSizeString(fileSizeInBytes) {
var i = -1;
var byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB'];
do {
fileSizeInBytes = fileSizeInBytes / 1024;
i++;
} while (fileSizeInBytes > 1024);