From e3a3db73ae4c2c90ad304e1e6b7d019053ca3dc3 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Sat, 11 Mar 2017 04:59:55 +0800 Subject: temporary fix for boolean bug (#1597) fixes #1592 --- lib/compress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress.js b/lib/compress.js index 7302f5b9..e3ae5bde 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -404,7 +404,7 @@ merge(Compressor.prototype, { return make_node(AST_Number, orig, { value: val }); case "boolean": - return make_node(val ? AST_True : AST_False, orig).transform(compressor); + return make_node(val ? AST_True : AST_False, orig).optimize(compressor); case "undefined": return make_node(AST_Undefined, orig).transform(compressor); default: -- cgit v1.2.3 ko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/mail.scm
AgeCommit message (Expand)Author
2020-03-16tests: opensmtpd: Check /var/spool/mail instead of /var/mail....Ludovic Courtès
2020-03-16tests: opensmtpd: Gracefully handle test failure....Ludovic Courtès
2020-03-09tests: getmail: Provide a pre-initialized user account password....Ludovic Courtès
2020-01-31gnu: Update opensmtpd configuration grammar....Tobias Geerinckx-Rice
2020-01-20tests: mail: Remove %getmail-os from the bottom of the file....Christopher Baines
2019-06-19tests: Fix opensmtpd test....Tobias Geerinckx-Rice