Add space after for

This commit is contained in:
Jarmo van Lenthe 2017-11-12 22:23:38 -05:00
parent 29047c2481
commit 5399d27875
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ const PhpSerialization = {
*/
function readUntil(until) {
let result = "";
for(;;) {
for (;;) {
let char = read(1);
if (char === until) {
break;