Skip to content

jakubknejzlik/unit-converter

Repository files navigation

convert

Build Status

Use convenient format for writing amounts and easily convert them to useful numbers.

npm install unit-converter

Example

import { convert } from 'unit-converter';

convert('10s').to('ms');
// -> 10000

convert('1h').to('ms');
// -> 3600000

convert('2KB').to('B');
// -> 2048

convert('1MB').to('B');
// -> 1048576

Supported unit systems

Currently byte and time systems are supported.

For more details about currently supported unit systems please see lib/systems/*.js.

About

Generic unit javascript convertor

Resources

License

Stars

Watchers

Forks

Packages

No packages published