(text, options = {})
| 426 | } |
| 427 | |
| 428 | function parseLess(text, options = {}) { |
| 429 | return parseWithParser( |
| 430 | // Workaround for https://github.com/shellscape/postcss-less/issues/145 |
| 431 | // See comments for `replaceQuotesInInlineComments` in `loc.js`. |
| 432 | (text) => postcssLess.parse(replaceQuotesInInlineComments(text)), |
| 433 | text, |
| 434 | options, |
| 435 | ); |
| 436 | } |
| 437 | |
| 438 | function parseScss(text, options = {}) { |
| 439 | return parseWithParser(postcssScssParse, text, options); |
nothing calls this directly
no test coverage detected
searching dependent graphs…