Skip to content

Commit b06f914

Browse files
committed
[Refactor] instead of throwing on undefined.forEach, throw explicitly.
1 parent dd93216 commit b06f914

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bin/tape

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ opts._.forEach(function (arg) {
3030
// Note: `glob.sync` may throw an error and crash the node process.
3131
var files = glob.sync(arg);
3232

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+
3337
files.forEach(function (file) {
3438
require(resolvePath(cwd, file));
3539
});

0 commit comments

Comments
 (0)