Files
pa11y-dashboard/view/helper/string.js
2016-07-22 14:34:10 +01:00

11 lines
171 B
JavaScript

'use strict';
module.exports = helper;
function helper(hbs) {
// Convert a string to lower-case
hbs.registerHelper('lowercase', context => context.toLowerCase());
}