4.0.0 • Published 2 years ago
rpn v4.0.0
rpn
Reverse Polish Notation implementation.
Example
var rpn = require('rpn');
rpn('3 4 +');
// => 7Installation
$ npm install rpnAPI
var rpn = require('rpn');rpn(expression)
Evaluates the postfix expression and returns the result.