(input: string)
| 631 | }; |
| 632 | |
| 633 | const cssTreeTryParse = (input: string) => { |
| 634 | try { |
| 635 | const ast = csstree.parse(input, { positions: true }); |
| 636 | return ast; |
| 637 | } catch { |
| 638 | return; |
| 639 | } |
| 640 | }; |
| 641 | |
| 642 | const getRawDeclarationValue = ( |
| 643 | css: string, |
no outgoing calls
no test coverage detected