* Get the conditions that apply to the CommonJS loader. * @returns {Set }
()
| 99 | * @returns {Set<string>} |
| 100 | */ |
| 101 | function getCjsConditions() { |
| 102 | if (cjsConditions === undefined) { |
| 103 | initializeCjsConditions(); |
| 104 | } |
| 105 | return cjsConditions; |
| 106 | } |
| 107 | |
| 108 | function getCjsConditionsArray() { |
| 109 | if (cjsConditionsArray === undefined) { |
no test coverage detected