diff --git a/util.php b/util.php
index 1d0d3a3..836facf 100644
--- a/util.php
+++ b/util.php
@@ -14,6 +14,8 @@ function uuid(): string {
}
function kys(mixed $arg): void {
+ if (gettype($arg) == 'boolean') $arg = $arg === true ? 'true' : 'false';
+ foreach ($arg as $a) { if (gettype($a) == 'boolean') $a = $a === true ? 'true' : 'false'; }
echo '';
echo '
';