const fs = require('fs') const getFileUpdatedDate = (path) => { const stats = fs.statSync(path) return stats.mtime }