UNPKG

175 BJavaScriptView Raw
1'use strict';
2
3function helper(paper) {
4 paper.handlebars.registerHelper('json', function (data) {
5 return JSON.stringify(data);
6 });
7}
8
9module.exports = helper;