filer/src/open-file-description.js

7 lines
164 B
JavaScript

module.exports = function OpenFileDescription(path, id, flags, position) {
this.path = path;
this.id = id;
this.flags = flags;
this.position = position;
};