jest/examples/getting-started/sum.js

8 lines
139 B
JavaScript

// Copyright (c) Meta Platforms, Inc. and affiliates.. All Rights Reserved.
function sum(a, b) {
return a + b;
}
module.exports = sum;