UNPKG
@harum/simple-calculator
Version:
latest (1.0.0)
1.0.0
Simple calculator functions
github.com/harum/simple-calculator/tree/main
harum/simple-calculator
@harum/simple-calculator
/
src
/
subtract.js
6 lines
(4 loc)
•
77 B
JavaScript
View Raw
1
2
3
4
5
6
export
function
subtract
(
a, b
) {
return
a - b; }
export
default
subtract;