UNPKG

265 BJavaScriptView Raw
1'use strict';
2
3function helper(paper) {
4 paper.handlebars.registerHelper('toLowerCase', function (string) {
5
6 if (typeof string !== 'string') {
7 return string;
8 }
9
10 return string.toLowerCase();
11 });
12}
13
14module.exports = helper;