UNPKG

350 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Concats two values, primarily used as a subhelper
5 * @example
6 * {{@lang (concat 'products.reviews.rating.' this) }}
7 */
8function helper(paper) {
9 paper.handlebars.registerHelper('concat', function (value, otherValue) {
10 return new paper.handlebars.SafeString(value + otherValue);
11 });
12}
13
14module.exports = helper;