(file: string, encoding = null)
| 9 | export const pkg = require('../../../../package.json'); |
| 10 | |
| 11 | export function read(file: string, encoding = null): string { |
| 12 | return fs.readFileSync(file, encoding).toString(); |
| 13 | } |
| 14 | |
| 15 | export function exists(file: string): boolean { |
| 16 | return fs.existsSync(file); |
no outgoing calls
searching dependent graphs…