Files
yjs-backend/bin
Eduard Bardají Puig 6415ca2e68 Update utils.js
Added a comment to clarify why reply messages are not sent when their length is 1. Alternatively we could also create a function with a descriptive name of the check being performed,

```js
function hasMessage(encoder) {
    return encoding.length(encoder) > 1;
}
```

The `if` statement would then look something like,

```js
if (hasMessage(encoder)) {
    send(...);
}
```

Thoughts?
2022-08-11 15:44:27 +02:00
..
2021-01-06 13:22:50 +01:00
2022-02-23 16:45:38 +01:00
2022-08-11 15:44:27 +02:00