file-dedupe
file-dedupe copied to clipboard
stat.ino can be truncated
See https://github.com/nodejs/node/issues/12115
The solution is to use the bigint: true
option on stat
, available from v10.5.0 of Node, and then ino
will be a BigInt
.
This is valuable information. Thanks.