A postfix/reverse polish notation calculator implemented in JavaScript
npm install @claudemuller/postfix-calculatorA postfix/reverse polish notation calculator implemented in JavaScript
npm install @claudemuller/postfix-calculator
``
const calculate = require('@claudemuller/postfix-calculator');
var result = calculate(5, 6, 7, '*', '+', 1, '-');
`46
Output should be
npm test`