1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-20 11:28:40 +02:00
joplin/ReactNativeClient/lib/fs-driver-dummy.js

9 lines
166 B
JavaScript
Raw Normal View History

2017-07-05 22:52:31 +01:00
class FsDriverDummy {
2017-07-05 23:09:47 +01:00
constructor() {}
2017-07-05 22:52:31 +01:00
appendFileSync(path, string) {}
writeBinaryFile(path, content) {}
readFile(path) {}
}
2019-07-29 15:43:53 +02:00
module.exports = { FsDriverDummy };