| 16 | const PRINT_VIEW_SOURCE_FILE = './src/assets/print-view/fetch-orcid.js' |
| 17 | |
| 18 | interface PrintViewUnit { |
| 19 | id: string |
| 20 | source: string |
| 21 | } |
| 22 | |
| 23 | function parsePrintViewUnits(path: string): PrintViewUnit[] { |
| 24 | const js = fs.readFileSync(path, 'utf8') |
nothing calls this directly
no outgoing calls
no test coverage detected