wishthis/node_modules/clone-stats/index.js
2022-01-21 09:28:41 +01:00

13 lines
228 B
JavaScript

var Stat = require('fs').Stats
module.exports = cloneStats
function cloneStats(stats) {
var replacement = new Stat
Object.keys(stats).forEach(function(key) {
replacement[key] = stats[key]
})
return replacement
}