(source: string)
| 31 | prettier.format(source, {parser: 'less'}).trim(); |
| 32 | |
| 33 | const getSource = (source: string): string => |
| 34 | prettier |
| 35 | .format(source, { |
| 36 | parser: 'typescript', |
| 37 | singleQuote: true, |
| 38 | trailingComma: 'all', |
| 39 | }) |
| 40 | .trim(); |
| 41 | |
| 42 | const getDependency = ( |
| 43 | url: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…