()
| 13 | }; |
| 14 | |
| 15 | function css() { |
| 16 | return [ |
| 17 | { |
| 18 | test: /\.css$/, |
| 19 | use: [{ |
| 20 | loader: 'style-loader' |
| 21 | }, |
| 22 | { |
| 23 | loader: 'css-loader', |
| 24 | options: { |
| 25 | url: false |
| 26 | } |
| 27 | }] |
| 28 | }, |
| 29 | ]; |
| 30 | } |
| 31 | |
| 32 | function css2str() { |
| 33 | return [ |
nothing calls this directly
no outgoing calls
no test coverage detected