Files
pa11y-dashboard/view/helper/url.js
2013-09-17 11:16:20 +01:00

13 lines
271 B
JavaScript

'use strict';
module.exports = helper;
function helper (register) {
// Simplify url by removing (eg http://, https://, trailing slashes) from url
register('simplify-url', function (context) {
return context.replace(/^https?:\/\//i, '').replace(/\/$/, '');
});
}