wishthis/node_modules/clone-stats/index.js

14 lines
228 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
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
}