mirror of
https://github.com/fuse-friends/fuse-native
synced 2024-10-27 18:34:01 +00:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
exports.unmount = function (fuse, cb) { // This only seems to be nessesary an the ancient osx we use on travis so ... yolo
|
|
fuse.unmount(function (err) {
|
|
if (err) return cb(err)
|
|
setTimeout(cb, 1000)
|
|
})
|
|
}
|