8 lines
78 B
JavaScript
8 lines
78 B
JavaScript
|
function test() {
|
||
|
return "passed";
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
test: test
|
||
|
}
|