Skip to content

Commit c820054

Browse files
committed
remove unused function
1 parent 0206949 commit c820054

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

lib/Module.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,6 @@ const sortByDebugId = (a, b) => {
2525

2626
const getFrozenArray = set => Object.freeze(Array.from(set));
2727

28-
/* istanbul ignore next */
29-
const getDebugIdent = set => {
30-
set.sortWith(sortByDebugId);
31-
const chunks = set;
32-
const list = [];
33-
for(const chunk of chunks) {
34-
const debugId = chunk.debugId;
35-
36-
if(typeof debugId !== "number") {
37-
return null;
38-
}
39-
40-
list.push(debugId);
41-
}
42-
43-
return list.join(",");
44-
};
45-
4628
class Module extends DependenciesBlock {
4729

4830
constructor(type) {

0 commit comments

Comments
 (0)