(followerId, followeeId, { following } = this)
| 31 | } |
| 32 | |
| 33 | follow(followerId, followeeId, { following } = this) { |
| 34 | if (!following.has(followerId)) following.set(followerId, new Set()); |
| 35 | |
| 36 | following.get(followerId).add(followeeId); |
| 37 | } |
| 38 | |
| 39 | unfollow(followerId, followeeId, { following } = this) { |
| 40 | if (following.has(followerId)) |