convert-to-mb
v2.5.4
Published
Converting Bytes to MB or KB
Downloads
4
Readme
Convert to MB
Converting Bytes to MB or KB
Usage/Examples

call convertMB to use, with desired number
import { convertMB } from "convert-to-mb";
...
const bytes = 4412847;
....
<p>
how much MB does {bytes} Bytes?{" "}
<span className="font-bold"> it's {convertMB(bytes)}</span>
</p>