We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
undefined.forEach
1 parent dd93216 commit b06f914Copy full SHA for b06f914
bin/tape
@@ -30,6 +30,10 @@ opts._.forEach(function (arg) {
30
// Note: `glob.sync` may throw an error and crash the node process.
31
var files = glob.sync(arg);
32
33
+ if (!Array.isArray(files)) {
34
+ throw new TypeError('unknown error: glob.sync did not return an array or throw. Please report this.');
35
+ }
36
+
37
files.forEach(function (file) {
38
require(resolvePath(cwd, file));
39
});
0 commit comments