1.0.0 • Published 5 years ago

decimal.js-light.macro v1.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

decimal.js-light.macro

Build Status npm version MIT License semantic-release

Usage

import decimal from 'decimal.js-light.macro'

const a = decimal(1)
const b = decimal(a - 3 * 4 / 5)
const c = decimal(a - 3 + 4 - 5)
const d = decimal(1 ** 2 ** 3)

      ↓ ↓ ↓ ↓ ↓ ↓

import { Decimal as _Decimal } from 'decimal.js-light';


const a = _Decimal('1');
const b = _Decimal(a).sub(_Decimal(_Decimal('3').mul('4')).div('5'));
const c = _Decimal(_Decimal(_Decimal(a).sub('3')).add('4')).sub('5');
const d = _Decimal('1').pow(_Decimal('2').pow('3'));

Contributors

Thanks goes to these wonderful people (emoji key):

gtkatakura💻 🤔 ⚠️

This project follows the all-contributors specification. Contributions of any kind welcome!