(args, enc)
| 16 | } |
| 17 | |
| 18 | function readFixtureSync(args, enc) { |
| 19 | if (Array.isArray(args)) |
| 20 | return fs.readFileSync(Reflect.apply(fixturesPath, this, args), enc); |
| 21 | return fs.readFileSync(fixturesPath(args), enc); |
| 22 | } |
| 23 | |
| 24 | function readFixtureKey(name, enc) { |
| 25 | return fs.readFileSync(fixturesPath('keys', name), enc); |
nothing calls this directly
no test coverage detected
searching dependent graphs…