@toolsnap/byte-converter
v1.0.0
Published
Convert between file size units: B, KB, MB, GB, TB
Downloads
59
Maintainers
Readme
@toolsnap/byte-converter
Convert between file size units: B, KB, MB, GB, TB, PB.
Installation
npm install @toolsnap/byte-converterUsage
const { convert, format, toBytes, fromBytes } = require('@toolsnap/byte-converter');
convert(1, 'GB', 'MB'); // 1024
convert(500, 'KB', 'B'); // 512000
format(1536); // '1.5 KB'
format(1048576); // '1 MB'
format(1073741824, { unit: 'GB' }); // '1 GB'
toBytes(2, 'MB'); // 2097152
fromBytes(2097152, 'MB'); // 2Try it online
👉 https://risetop.top/unit-converter.html
License
MIT © Rocky Luo
