UNPKG
inpostfix
Version:
latest (1.1.1)
1.1.1
1.0.0
0.0.1
Convert infix to RPN notation, and solve it
github.com/gumm/inpostfix
gumm/inpostfix
inpostfix
/
rollup.config.js
12 lines
(11 loc)
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// rollup.
config
.js export default [ {
input
:
'module/rpn.mjs'
,
output
: { file:
'main.js'
,
format
:
'cjs'
, name:
'rpn'
, } } ];