Fix eslint issue (#5698)

pull/7738/head
Ben McCann 5 years ago committed by GitHub
parent 55fab215f9
commit 27aff7e562

@ -227,8 +227,9 @@ export function combine_sourcemaps(
if (sourcefile === filename && sourcemap_list[map_idx]) { if (sourcefile === filename && sourcemap_list[map_idx]) {
return sourcemap_list[map_idx++]; // idx 1, 2, ... return sourcemap_list[map_idx++]; // idx 1, 2, ...
// bundle file = branch node // bundle file = branch node
} else {
return null; // source file = leaf node
} }
else return null; // source file = leaf node
} as SourceMapLoader, } as SourceMapLoader,
true true
); );

Loading…
Cancel
Save