Rozbot/lib/helpers/lastModified.js
2016-07-11 23:24:15 -04:00

7 lines
154 B
JavaScript

var fsStat = require('../promise/fs-stat.js');
module.exports = function(file) {
return fsStat(file).then(function(stats) {
return stats.mtime;
})
}