Skip to content

Commit 4f604fa

Browse files
authored
fix: remove console.log
1 parent 074547c commit 4f604fa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ The included methods are:
129129
- `isDirectory()`
130130
- `isSymbolicLink()`
131131

132+
### `fs.lstat(filepath, opts?, cb)`
133+
134+
Alias to `fs.stat` for now until symlinks are supported.
135+
132136
## License
133137

134138
MIT

src/CacheFS.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ module.exports = class CacheFS {
3131
return count;
3232
}
3333
autoinc () {
34-
console.time('autoinc')
3534
let val = this._maxInode(this._root.get("/")) + 1;
36-
console.timeEnd('autoinc')
3735
return val;
3836
}
3937
_maxInode(map) {

0 commit comments

Comments
 (0)