Add space after for

This commit is contained in:
Jarmo van Lenthe 2017-11-12 22:23:38 -05:00
parent 29047c2481
commit 5399d27875

View File

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