decimal.js.macro
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

decimal.js.macro

Build Status npm version MIT License semantic-release

Usage

import decimal from 'decimal.js.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';


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!

/decimal.js.macro/

    Package Sidebar

    Install

    npm i decimal.js.macro

    Weekly Downloads

    34

    Version

    1.0.3

    License

    MIT

    Unpacked Size

    93.1 kB

    Total Files

    15

    Last publish

    Collaborators

    • gtkatakura