Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richzwart committed Jan 8, 2024
1 parent 5094ac6 commit 97ae294
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/providers/ModuleInstantiator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,16 +432,6 @@ function parseContainer(symbol: string, container: string, moduleIsParameterized
const output = [];

const keys = container.split(' ');
// Filtering out keys beforehand makes it slightly less time consuming to debug but also breaks the comment grabber so don't do this:
/*
const keys = container.split(' ').filter((el) => {
if (isEmptyKey(el)) {
return false;
} else {
return true;
}
});
*/

// This is a bit funky, but the for loop below actually checks if these varaibles
// are undefined so it is important that they are initialized as such
Expand Down

0 comments on commit 97ae294

Please sign in to comment.