snakebyte
Version:
Convert between different byte units
57 lines (35 loc) • 1.6 kB
Markdown
byte units
[](https://github.com/Bikossor/snakebyte/actions/workflows/node.js.yml)




```
npm i snakebyte
```
Download the latest version of snakebyte [here](https://github.com/Bikossor/snakebyte/releases/latest).
```javascript
const { snakebyte } = require("snakebyte");
const kilobyteToMegabyte = snakebyte({
from: "Kilobyte", // optional, defaults to "Byte"
to: "Megabyte",
fractions: 2, // optional, defaults to 3
});
kilobyteToMegabyte(1000);
// => 1
```
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags](https://github.com/bikossor/snakebyte/tags) on this repository.
- [Bikossor](https://github.com/Bikossor)
See also the list of [contributors](https://github.com/bikossor/snakebyte/contributors) who participated in this project.
This project is licensed under the MIT License - see [here](LICENSE) for more details.
Convert between different