Skip to content

Commit 59b442f

Browse files
authored
Use braces around if body
1 parent 1db97ff commit 59b442f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source-map-support.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,9 @@ exports.install = function(options) {
568568
// Don't let browserify try to resolve this require(), it's pointless
569569
// and breaks the build process.
570570
var worker_threads = require('worker_' + 'threads');
571-
if (worker_threads.isMainThread === false)
571+
if (worker_threads.isMainThread === false) {
572572
installHandler = false;
573+
}
573574
} catch(e) {}
574575

575576
// Provide the option to not install the uncaught exception handler. This is

0 commit comments

Comments
 (0)