4.7.0 • Published 3 years ago

bytes-convert v4.7.0

Weekly downloads
17
License
GPL-3.0
Repository
github
Last release
3 years ago

bytes-convert

Release

A simple JavaScript module to convert bits to either bytes or octet.

Usage

In Node.js

const bytesConvert = require('bytes-convert');

bytesConvert.convertFromOctet(65631);
// '65.63Ko'

bytesConvert.convertFromBits(6563123);
// '820.39Ko'

// OR

import { convertFromOctet, convertFromBits, Units } from 'bytes-convert';

convertFromOctet(65631);
convertFromOctet(65631, Units.OCTET);
// '65.63Ko'
convertFromOctet(65631, Units.BYTE);
// '6.56MB'

convertFromBits(6563123);
convertFromBits(6563123, Units.OCTET);
// '820.39Ko'
convertFromBits(6563123, Units.BYTE);
// '820.39KB'

In browser

<script src="https://cdn.jsdelivr.net/npm/bytes-convert/dist/bytes-convert.umd.min.js"></script>

<script>
    bytesConvert.convertFromOctet(65631);
    // '65.63Ko'
    
    bytesConvert.convertFromBits(6563123);
    // '820.39Ko'
</script>
4.7.0

3 years ago

4.6.1

3 years ago

4.6.0

3 years ago

4.5.0

3 years ago

4.4.0

3 years ago

4.1.0

3 years ago

4.3.0

3 years ago

4.2.0

3 years ago

4.0.0

3 years ago

3.13.0

3 years ago

3.12.0

3 years ago

3.11.0

3 years ago

3.10.0

3 years ago

3.9.0

3 years ago

3.8.0

3 years ago

3.7.0

3 years ago

3.6.0

3 years ago

3.4.0

3 years ago

3.5.0

3 years ago

3.3.0

3 years ago

3.2.0

3 years ago

3.1.0

3 years ago

3.0.1

3 years ago

3.0.0

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago