Skip to content
Snippets Groups Projects
index.js 228 B
Newer Older
  • Learn to ignore specific revisions
  • 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
    }