for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* Handlebars helper, to add variable inside template file
*/
export default function setVariable(varName, varValue, options){
options.data.root[varName] = varValue;
};