'use strict'; module.exports = function renderIf(condition, content) { if (condition) { return content; } };