Files
codeql/javascript/ql/test/library-tests/NodeJS/mjs-files/depend-on-me.js
2018-08-02 17:53:23 +01:00

8 lines
104 B
JavaScript

exports.add = function add(x, y) {
return x + y;
}
export function add(x, y) {
return x + y;
}