forked from external-repos/pa11y-dashboard

* 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();
|
|
});
|
|
|
|
}
|