joplin/ReactNativeClient/lib/fs-driver-dummy.js

10 lines
167 B
JavaScript
Raw Normal View History

2017-07-05 21:52:31 +00:00
class FsDriverDummy {
2017-07-05 22:09:47 +00:00
constructor() {}
2017-07-05 21:52:31 +00:00
appendFileSync(path, string) {}
writeBinaryFile(path, content) {}
readFile(path) {}
}
2017-11-03 00:13:17 +00:00
module.exports = { FsDriverDummy };