Rozbot/lib/helpers/lastModified.js

8 lines
154 B
JavaScript
Raw Normal View History

2016-07-11 23:24:15 -04:00
var fsStat = require('../promise/fs-stat.js');
module.exports = function(file) {
return fsStat(file).then(function(stats) {
return stats.mtime;
})
}