rpncc

3.0.3 • Public • Published

rpncc

Build Status npm GitHub license npm total downloads

This is a program for Reverse Polish notation utility. It converts or calculates a expressions to Reverse Polish notation.

Use examples

First, install this module in your project.

$ npm install rpncc

Import this module in your source code and call like below.

var Rpn = require('rpncc');
var rpn = new Rpn();

console.log(rpn.convert(["1", "+", "2", "*", "3"]));     // -> [ '1', '2', '3', '*', '+' ]
console.log(rpn.calculate([ '1', '2', '3', '*', '+' ])); // -> 7
console.log(rpn.revert([ '1', '2', '3', '*', '+' ]));    // -> ["1", "+", "2", "*", "3"]

Testing

rpncc uses ava for testing. You can run test cases by installing dependencies then run "npm test" command.

$ npm install
$ npm test

License

This software is released under the MIT License, see LICENSE.txt.

/rpncc/

    Package Sidebar

    Install

    npm i rpncc

    Weekly Downloads

    242

    Version

    3.0.3

    License

    MIT

    Unpacked Size

    19.6 kB

    Total Files

    8

    Last publish

    Collaborators

    • tsutomu_nakamura