* Unmounts the VFS.
()
| 151 | * Unmounts the VFS. |
| 152 | */ |
| 153 | unmount() { |
| 154 | debug('unmount %s', this[kMountPoint]); |
| 155 | loadVfsSetup(); |
| 156 | deregisterVFS(this); |
| 157 | this[kMountPoint] = null; |
| 158 | this[kMounted] = false; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Disposes of the VFS by unmounting it. |
no test coverage detected