(raw: string)
| 180 | } |
| 181 | |
| 182 | const stripJsonStyleComments = (raw: string): string => |
| 183 | raw.replace(/\/\*[\s\S]*?\*\//g, '').replace(/^\s*\/\/.*$/gm, '') |
| 184 | |
| 185 | const safeReadFile = (filePath: string): string | null => { |
| 186 | try { |
no outgoing calls
no test coverage detected