mirror of
https://github.com/Brandon-Rozek/Rozbot.git
synced 2024-11-07 20:30:34 -05:00
8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
var fs = require('fs');
|
|
var promise = require('promise-polyfill');
|
|
|
|
module.exports = function(path) {
|
|
return new promise(function(resolve, reject) {
|
|
resolve(fs.stat(path));
|
|
});
|
|
}
|