4 lines
89 B
JavaScript
4 lines
89 B
JavaScript
module.exports = (input) => {
|
|
return parseInt(input.a, 10) + parseInt(input.b, 10)
|
|
}
|