mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-31 15:26:17 +00:00
6 lines
156 B
JavaScript
6 lines
156 B
JavaScript
|
const slugs = require('slugify');
|
||
|
|
||
|
module.exports = exports = function slugify (s) {
|
||
|
return slugs(s, { remove: /[*+~.,()'"!?:@/\\]/g }).toLowerCase();
|
||
|
};
|