marko/test/test-project/xml-templates/string-concat-with-ternary-operator.marko.xml.expected.js
Patrick Steele-Idem 36a51b05bb Renamed to marko
2014-09-18 18:02:41 -06:00

10 lines
260 B
JavaScript

module.exports = function create(__helpers) {
var empty = __helpers.e,
notEmpty = __helpers.ne;
return function render(data, context) {
context.w(('\nA: ') +
(true ? 'ABC' : '') +
('\nB: This should be outputted as well.\n'));
};
}