mirror of
https://github.com/thelounge/thelounge
synced 2024-12-21 09:53:10 +00:00
6 lines
106 B
JavaScript
6 lines
106 B
JavaScript
|
"use strict";
|
||
|
|
||
|
module.exports = function(orig) {
|
||
|
return orig.toLowerCase().replace(/[^a-z0-9]/, "-");
|
||
|
};
|