forked from external-repos/pa11y-dashboard
11 lines
171 B
JavaScript
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());
|
|
|
|
}
|