UNPKG

267 BJavaScriptView Raw
1'use strict';
2const common = require('../lib/common.js');
3
4function helper(paper) {
5 paper.handlebars.registerHelper('json', function (data) {
6 data = common.unwrapIfSafeString(data);
7 return JSON.stringify(data);
8 });
9}
10
11module.exports = helper;