From fb0c9e4269a23d6dece067976f1da9f7e45441be Mon Sep 17 00:00:00 2001 From: italo jose Date: Fri, 24 Apr 2026 13:45:49 -0300 Subject: [PATCH] style: fix whitespace and indentation in exceptions.js debugFunc definition --- packages/blaze/exceptions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/blaze/exceptions.js b/packages/blaze/exceptions.js index e85747fef..0c56311b4 100644 --- a/packages/blaze/exceptions.js +++ b/packages/blaze/exceptions.js @@ -28,12 +28,12 @@ Blaze._reportException = function (e, msg) { throw e; } - if (! debugFunc) + if (!debugFunc) // adapted from Tracker debugFunc = function () { return (typeof Meteor !== "undefined" ? Meteor._debug : - ((typeof console !== "undefined") && console.log ? console.log : - function () {})); + ((typeof console !== "undefined") && console.log ? console.log : + function () { })); }; // In Chrome, `e.stack` is a multiline string that starts with the message