diff --git a/javascript/src/User.js b/javascript/src/User.js index f5af5e10..e3d82715 100644 --- a/javascript/src/User.js +++ b/javascript/src/User.js @@ -1,5 +1,8 @@ "use strict"; -module.exports = class User { +class User { + friends = []; + getFriends = () => this.friends; +} -} \ No newline at end of file +module.exports = User