class TestClass {
constructor(name) {
this.name = name;
}
testMethod(value) {
if (value > 0) {
return this.name;
}
return null;
}
}
function testFunction(items) {
return items.length;
}
const TEST_CONSTANT = "test_value";
const arrowFunction = (x, y) => x + y;
module.exports = { TestClass, testFunction };