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
12 changes: 6 additions & 6 deletions lib/fs.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -375,7 +375,7 @@ function readFileAfterStat(err) {
// our internal use.
var size;
if ((statValues[1/*mode*/] & S_IFMT) === S_IFREG)
size = context.size = statValues[8/*size*/];
size = context.size = statValues[8];
else
size = context.size = 0;

Expand DownExpand Up@@ -490,7 +490,7 @@ fs.readFileSync = function(path, options) {
// our internal use.
var size;
if ((statValues[1/*mode*/] & S_IFMT) === S_IFREG)
size = statValues[8/*size*/];
size = statValues[8];
else
size = 0;
var pos = 0;
Expand DownExpand Up@@ -1654,8 +1654,8 @@ fs.realpathSync = function realpathSync(p, options) {
var linkTarget = null;
var id;
if (!isWindows) {
var dev = statValues[0/*dev*/].toString(32);
var ino = statValues[7/*ino*/].toString(32);
var dev = statValues[0].toString(32);
var ino = statValues[7].toString(32);
id = `${dev}:${ino}`;
if (seenLinks[id]) {
linkTarget = seenLinks[id];
Expand DownExpand Up@@ -1793,8 +1793,8 @@ fs.realpath = function realpath(p, options, callback) {
// dev/ino always return 0 on windows, so skip the check.
let id;
if (!isWindows) {
var dev = statValues[0/*ino*/].toString(32);
var ino = statValues[7/*ino*/].toString(32);
var dev = statValues[0].toString(32);
var ino = statValues[7].toString(32);
id = `${dev}:${ino}`;
if (seenLinks[id]) {
return gotTarget(null, seenLinks[id], base);
Expand Down