joyent-portal/packages/unitcalc
Sérgio Ramos 1cc2330b22 feat(joyent-cp-frontend): create dg initial implementation 2017-06-15 17:11:40 +01:00
..
src chore: initial lerna setup 2017-05-25 10:56:50 +01:00
test chore: initial lerna setup 2017-05-25 10:56:50 +01:00
.eslintignore build(joyent-cp-frontend): build for demo 2017-06-01 23:32:58 +01:00
.eslintrc chore: initial lerna setup 2017-05-25 10:56:50 +01:00
.tern-project chore: initial lerna setup 2017-05-25 10:56:50 +01:00
CHANGELOG.md chore: publish 2017-05-25 16:07:31 +01:00
README.md docs: add container badges 2017-05-31 22:35:35 +01:00
package.json feat(joyent-cp-frontend): create dg initial implementation 2017-06-15 17:11:40 +01:00
yarn.lock chore: bootstrap data for frontend 2017-06-06 10:38:59 +01:00

README.md

unitcalc

License: MPL 2.0 npm standard-readme compliant

Calculate the rem's from unit values.

Table of Contents

Install

yarn add --dev unitcalc

Usage

import unitcalc from 'unitcalc';
import assert from 'assert';


assert.deepEqual(unitcalc(1, 2, 3, 4), '0.375rem 0.75rem 1.125rem 1.5rem');

assert.deepEqual(unitcalc('1'), '0.375rem');

assert.deepEqual(unitcalc.withBase(10, '1'), '0.625rem');

assert.deepEqual(
  unitcalc('1', '2', '3', '4'),
  '0.375rem 0.75rem 1.125rem 1.5rem'
);

assert.deepEqual(
  unitcalc.withBase(10, '1', '2', '3', '4'),
  '0.625rem 1.25rem 1.875rem 2.5rem'
);

assert.deepEqual(unitcalc('1 2 3 4'), '0.375rem 0.75rem 1.125rem 1.5rem');

assert.deepEqual(
  unitcalc.withBase(10, '1 2 3 4'),
  '0.625rem 1.25rem 1.875rem 2.5rem'
);

License

MPL-2.0