mirror of
https://github.com/thelounge/thelounge
synced 2024-11-27 06:20:26 +00:00
5 lines
106 B
JavaScript
5 lines
106 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(orig) {
|
|
return orig.toLowerCase().replace(/[^a-z0-9]/, "-");
|
|
};
|