cucumber
Version:
The official JavaScript implementation of Cucumber.
23 lines (18 loc) • 393 B
JavaScript
function DocString(contentType, contents, uri, line) {
var self = {
getContents: function getContents() {
return contents;
},
getContentType: function getContentType() {
return contentType;
},
getUri: function getUri() {
return uri;
},
getLine: function getLine() {
return line;
}
};
return self;
}
module.exports = DocString;