1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/ReactNativeClient/lib/fs-driver-dummy.js

10 lines
167 B
JavaScript
Raw Normal View History

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