Skip to content

Commit ffa503a

Browse files
committed
Use regular ol' if instead of boolean operator in sanity check
1 parent 2e57f22 commit ffa503a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

bin/tape

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ if (typeof opts.require === 'string') {
1818
}
1919

2020
opts.require.forEach(function(module) {
21-
/* The `module &&` ensures we ignore `-r ""`, trailing `-r` or other
22-
* silly things the user might (inadvertedly) be doing.
23-
*/
24-
module && require(resolveModule(module, { basedir: cwd }));
21+
if (module) {
22+
/* This check ensures we ignore `-r ""`, trailing `-r`, or
23+
* other silly things the user might (inadvertedly) be doing. */
24+
require(resolveModule(module, { basedir: cwd }));
25+
}
2526
});
2627

2728
opts._.forEach(function (arg) {

0 commit comments

Comments
 (0)