mirror of
https://github.com/gchq/CyberChef
synced 2025-01-12 04:28:53 +00:00
Add space after for
This commit is contained in:
parent
29047c2481
commit
5399d27875
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ const PhpSerialization = {
|
|||
*/
|
||||
function readUntil(until) {
|
||||
let result = "";
|
||||
for(;;) {
|
||||
for (;;) {
|
||||
let char = read(1);
|
||||
if (char === until) {
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue