import getPathFakeContentFile from './getPathFakeContentFile'; export default ({ action, type, file }: any): string => { const fs = require('fs'); const path = getPathFakeContentFile({ action, type, file }); return fs.readFileSync(path, 'UTF8'); };