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

9 lines
137 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() {}
appendFileSync() {}
writeBinaryFile() {}
readFile() {}
2017-07-05 23:52:31 +02:00
}
2019-07-29 15:43:53 +02:00
module.exports = { FsDriverDummy };