(string: string)
| 9 | } |
| 10 | |
| 11 | function parseWithLoc(string: string) { |
| 12 | return CSS.parse(string.replaceAll(/\r?\n/g, lineEndings === 'Windows' ? '\r\n' : '\n'), { |
| 13 | from: 'input.css', |
| 14 | }) |
| 15 | } |
| 16 | |
| 17 | describe('comments', () => { |
| 18 | it('should parse a comment and ignore it', () => { |