mirror of
https://github.com/gchq/CyberChef
synced 2025-01-12 12:38:48 +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) {
|
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;
|
||||||
|
|
Loading…
Reference in a new issue