mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00
13 lines
190 B
JavaScript
13 lines
190 B
JavaScript
'use strict';
|
|
|
|
module.exports = helper;
|
|
|
|
function helper (register) {
|
|
|
|
// Convert a string to lower-case
|
|
register('lowercase', function (context) {
|
|
return context.toLowerCase();
|
|
});
|
|
|
|
}
|