0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/packages/store/test/fixtures/test.utils.ts

9 lines
164 B
TypeScript
Raw Normal View History

2020-03-03 17:59:19 -05:00
import fs from 'fs';
import path from 'path';
function readFile(filePath) {
return fs.readFileSync(path.join(__dirname, `/${filePath}`));
}
export { readFile }