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