blob: 1f2a9b6cbeb9103e778b10c2280394b3ed755cf5 [file] [log] [blame]
/**
* Constructor.
* name {DOMString} name of the file, without path information
* fullPath {DOMString} the full path of the file, including the name
* type {DOMString} mime type
* lastModifiedDate {Date} last modified date
* size {Number} size of the file in bytes
*/
var File = function(name, fullPath, type, lastModifiedDate, size){
this.name = name || '';
this.fullPath = fullPath || null;
this.type = type || null;
this.lastModifiedDate = lastModifiedDate || null;
this.size = size || 0;
};
module.exports = File;