-
Mariusz Szulist thinks this is interesting:
const
g
=
function
f
(
stop
)
{
if
(
stop
)
console
.
log
(
'f stopped'
);
f
(
true
);
};
g
(
false
...
Minimise
const
g
=
function
f
(
stop
)
{
if
(
stop
)
console
.
log
(
'f stopped'
);
f
(
true
);
};
g
(
false
...
Minimise