mirror of
https://github.com/thelounge/thelounge
synced 2025-02-18 14:18:26 +00:00
7 lines
127 B
JavaScript
7 lines
127 B
JavaScript
"use strict";
|
|
|
|
const escape = require("css.escape");
|
|
|
|
module.exports = function(orig) {
|
|
return escape(orig.toLowerCase());
|
|
};
|