Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/vfs/dir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import type { Callback } from '../utils.js';
import { Buffer } from 'buffer';
import { withErrno } from 'kerium';
import { packed, sizeof, struct, types as t } from 'memium';
import { warn } from 'node:console';
import { encodeUTF8 } from 'utilium';
import { BufferView } from 'utilium/buffer.js';
import { basename, dirname } from '../path.js';
Expand Down Expand Up @@ -83,7 +82,7 @@ export class Dirent<Name extends string | Buffer = string, TArrayBuffer extends
* @deprecated Removed in Node v24, use `parentPath` instead.
*/
get path(): string {
warn('Dirent.path was removed in Node v24, use parentPath instead');
console.warn('Dirent.path was removed in Node v24, use parentPath instead');
return this._parentPath;
}

Expand Down
Loading