# scalc-core

> Calculator based on postfix notation

Latest version **0.0.1** (published 2019-01-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install scalc-core
pnpm add scalc-core
yarn add scalc-core
bun add scalc-core
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2019-01-14 |
| First published | 2019-01-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 131.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 1 |
| Author | Nikita Kostenko |
| Maintainers | vanmxpx |

## Links

- npm: https://www.npmjs.com/package/scalc-core
- Repository: https://github.com/KostenkoNikita/s-calc-core
- Homepage: https://github.com/KostenkoNikita/s-calc-core#readme
- Issues: https://github.com/KostenkoNikita/s-calc-core/issues
- npm.io page: https://npm.io/package/scalc-core

## Dependencies (1)

- [nan](https://npm.io/package/nan.md) 2.12.1

## Recent versions

- 0.0.1 (latest) — 2019-01-14

## README

# s-calc-core

Core calculator library based on postfix notation
=========

A small library executes mathematical expressions.

## Installation

  Core js: 
  `npm install scalc/core`
  Types: 
  `npm install @scalc/core`

## Usage
    JS:
    `var core = require('scalc/core');
    var formattedNum = core.napiTokenize('33+22*44');`

        JS:
    `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.

---
_Source: https://npm.io/package/scalc-core · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
