We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
if
1 parent 2e57f22 commit ffa503aCopy full SHA for ffa503a
bin/tape
@@ -18,10 +18,11 @@ if (typeof opts.require === 'string') {
18
}
19
20
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 }));
+ if (module) {
+ /* This check ensures we ignore `-r ""`, trailing `-r`, or
+ * other silly things the user might (inadvertedly) be doing. */
+ require(resolveModule(module, { basedir: cwd }));
25
+ }
26
});
27
28
opts._.forEach(function (arg) {
0 commit comments