mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 14:51:28 +00:00
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());
|
|
|
|
}
|