mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-02-07 10:16:16 +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();
|
|
};
|