(localName, exportLocalsConvention)
| 486 | } |
| 487 | |
| 488 | function getValidLocalName(localName, exportLocalsConvention) { |
| 489 | const result = exportLocalsConvention(localName); |
| 490 | |
| 491 | return Array.isArray(result) ? result[0] : result; |
| 492 | } |
| 493 | |
| 494 | const IS_MODULES = /\.module(s)?\.\w+$/i; |
| 495 | const IS_ICSS = /\.icss\.\w+$/i; |
no outgoing calls
no test coverage detected