filer/src/directory-entry.js

9 lines
167 B
JavaScript

define(['src/constants'], function(Constants) {
return function DirectoryEntry(id, type) {
this.id = id;
this.type = type || Constants.MODE_FILE;
};
});