MCPcopy Index your code
hub / github.com/nodejs/node / areIdentical

Function areIdentical

lib/internal/fs/cp/cp.js:122–125  ·  view source on GitHub ↗
(srcStat, destStat)

Source from the content-addressed store, hash-verified

120}
121
122function areIdentical(srcStat, destStat) {
123 return destStat.ino && destStat.dev && destStat.ino === srcStat.ino &&
124 destStat.dev === srcStat.dev;
125}
126
127function getStats(src, dest, opts) {
128 const statFunc = opts.dereference ?

Callers 2

checkPathsFunction · 0.85
checkParentPathsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…