mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 14:51:28 +00:00

* Update dependencies * Switch from jsdom to cheerio * Update the supported Node.js versions * Recompile the client-side CSS and JS
13 lines
193 B
JavaScript
13 lines
193 B
JavaScript
'use strict';
|
|
|
|
module.exports = helper;
|
|
|
|
function helper(hbs) {
|
|
|
|
// Convert a string to lower-case
|
|
hbs.registerHelper('lowercase', function(context) {
|
|
return context.toLowerCase();
|
|
});
|
|
|
|
}
|