(line: string)
| 1 | import {unquote} from './utils'; |
| 2 | |
| 3 | const getValue = (line: string) => { |
| 4 | const name = line.match(/\:(.*)\;/)?.[1].trim(); |
| 5 | return unquote(name as string); |
| 6 | }; |
| 7 | |
| 8 | const getUrl = (line: string) => { |
| 9 | const name = line.match(/url\((.*?)\)/)?.[1].trim(); |
no test coverage detected
searching dependent graphs…