package com.aperture_software.glados_wiki.support;
import org.apache.commons.io.FileUtils;
/**
* Created by jhyun on 13. 12. 19.
*/
public class ByteCounts {
public static String bytes(Number n) {
return FileUtils.byteCountToDisplaySize(n.longValue());
}
}