0.1.8 • Published 6 years ago

@scalc/core v0.1.8

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

s-calc-core

Core calculator library based on postfix notation

A small library executes mathematical expressions.

Installation

Core install: npm install @scalc/core

Usage

JS:
`var core = require('@scalc/core');
var formattedNum = core.napiTokenize('33+22*44');`

TS:
`import { napiTokenize } from '@scalc/core';
let formattedNum = napiTokenize('33+22*44');`

Output should be [ '33', '+', '22', '*', '44' ]

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago