Skip to content

Commit

Permalink
fix: unique decision
Browse files Browse the repository at this point in the history
  • Loading branch information
uctakeoff committed Mar 20, 2022
1 parent 4a2fb41 commit d4b40b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LineCounterTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const uniqueLanguageConf = (conf: LanguageConf) => {
conf.filenames = [...new Set(conf.filenames)];
conf.extensions = [...new Set(conf.extensions)];
conf.lineComments = [...new Set(conf.lineComments)];
conf.blockComments = [...new Set(conf.blockComments)];
conf.blockStrings = [...new Set(conf.blockStrings)];
conf.blockComments = [...new Map(conf.blockComments)];
conf.blockStrings = [...new Map(conf.blockStrings)];
// console.log(`2langExtensions : `, conf);
};
export class LineCounterTable {
Expand Down

0 comments on commit d4b40b6

Please sign in to comment.