unit-converter
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

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.

Package Sidebar

Install

npm i unit-converter

Weekly Downloads

10

Version

1.1.0

License

mit

Unpacked Size

19.4 kB

Total Files

36

Last publish

Collaborators

  • jakub.knejzlik