import fs from 'fs-extra'; class FsDriverNode { appendFileSync(path, string) { return fs.appendFileSync(path, string); } writeBinaryFile(path, content) { let buffer = new Buffer(content); return fs.writeFile(path, buffer); } readFile(path) { return fs.readFile(path); } } export { FsDriverNode }