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