UNPKG

cucumber

Version:

The official JavaScript implementation of Cucumber.

11 lines (8 loc) 238 B
function Attachment(payload) { var self = { getMimeType: function getMimeType() { return payload.mimeType; }, getData: function getData() { return payload.data; } }; return self; } module.exports = Attachment;