(filepath: string)
| 11 | } |
| 12 | |
| 13 | export function readJSONSync<T = any>(filepath: string): T { |
| 14 | return JSON.parse(readFileSync(filepath, 'utf8')) as T; |
| 15 | } |
| 16 | |
| 17 | export interface JSONStringifyOptions { |
| 18 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…