Skip to content

Commit

Permalink
fs: remove useless internalFS
Browse files Browse the repository at this point in the history
PR-URL: #25161
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
ZYSzys authored and targos committed Feb 10, 2019
1 parent 5d2e064 commit 29c195e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const {
} = errors.codes;

const { FSReqCallback, statValues } = binding;
const internalFS = require('internal/fs/utils');
const { toPathIfFileURL } = require('internal/url');
const internalUtil = require('internal/util');
const {
Expand All @@ -72,7 +71,7 @@ const {
validateOffsetLengthRead,
validateOffsetLengthWrite,
validatePath
} = internalFS;
} = require('internal/fs/utils');
const {
CHAR_FORWARD_SLASH,
CHAR_BACKWARD_SLASH,
Expand Down

0 comments on commit 29c195e

Please sign in to comment.