mirror of
https://github.com/Brandon-Rozek/Rozbot.git
synced 2024-11-07 20:30:34 -05:00
7 lines
154 B
JavaScript
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;
|
|
})
|
|
}
|