remove loop label due to babel bug

This commit is contained in:
Sebastian McKenzie 2015-05-15 01:48:47 +01:00
parent d3e385c554
commit 4c04371ea4

View File

@ -114,11 +114,11 @@ export function shouldIgnore(filename, ignore, only) {
if (only.length) {
var matches = false;
patternLoop: for (var pattern of (only: Array)) {
for (var pattern of (only: Array)) {
for (let filename of (filenames: Array)) {
if (pattern.test(filename)) {
matches = true;
break patternLoop;
break;
}
}
}