blob: 1e882ad85d820e6414ac9d462ec5e5649da73210 [file] [log] [blame]
/**
* Information about the state of the file or directory
*
* {Date} modificationTime (readonly)
*/
var Metadata = function(time) {
this.modificationTime = (typeof time != 'undefined'?new Date(time):null);
};
module.exports = Metadata;