We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074547c commit 4f604faCopy full SHA for 4f604fa
README.md
@@ -129,6 +129,10 @@ The included methods are:
129
- `isDirectory()`
130
- `isSymbolicLink()`
131
132
+### `fs.lstat(filepath, opts?, cb)`
133
+
134
+Alias to `fs.stat` for now until symlinks are supported.
135
136
## License
137
138
MIT
src/CacheFS.js
@@ -31,9 +31,7 @@ module.exports = class CacheFS {
31
return count;
32
}
33
autoinc () {
34
- console.time('autoinc')
35
let val = this._maxInode(this._root.get("/")) + 1;
36
- console.timeEnd('autoinc')
37
return val;
38
39
_maxInode(map) {
0 commit comments