aureooms/js-rpn

View on GitHub
js/src/operand.js

Summary

Maintainability
A
0 mins
Test Coverage

const operand = function ( stack , token ) {

    stack.push( token ) ;

} ;

exports.operand = operand ;