We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0206949 commit c820054Copy full SHA for c820054
1 file changed
lib/Module.js
@@ -25,24 +25,6 @@ const sortByDebugId = (a, b) => {
25
26
const getFrozenArray = set => Object.freeze(Array.from(set));
27
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
46
class Module extends DependenciesBlock {
47
48
constructor(type) {
0 commit comments