UNPKG

206 BJavaScriptView Raw
1'use strict';
2
3function helper(paper) {
4 paper.handlebars.registerHelper('snippet', function (location) {
5 return '<!-- snippet location ' + location + ' -->';
6 });
7}
8
9module.exports = helper;