mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-02-01 06:08:38 +00:00
7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
|
/** @license https://github.com/facebook/jest/blob/master/LICENSE */
|
||
|
|
||
|
function sum(a, b) {
|
||
|
return a + b;
|
||
|
}
|
||
|
module.exports = sum;
|