diff --git a/scripts/strip.js b/scripts/strip.js index 969abc0..5c6ddf4 100644 --- a/scripts/strip.js +++ b/scripts/strip.js @@ -22,7 +22,7 @@ const stripCode = (code) => code .replaceAll('throw ', 'throw~') .replaceAll('async ', 'async~') .replaceAll('else ', 'else~') - .replaceAll('false', '!!0') + .replaceAll('false', '!1') .replaceAll('true', '!0') .replace(/((['"`])[\s\S]*?\2)|[ \n]/g, (_, g1) => g1 || '') .replaceAll('~', ' ')