I have client side dust template and a corresponding helper.
Helper :
function(chunk, context, bodies, params) {
};
Now I want to write some key value pair(from helper) which I can read in dust template.
e.g.If i write (k,v) in helper, in dust template
{k}
should output 'v'
Thanks,
Shantanu