1
0
mirror of https://github.com/GenderDysphoria/GenderDysphoria.fyi.git synced 2025-11-25 20:42:40 +00:00
Files
GenderDysphoria.fyi/build/lib/slugify.js
Jocelyn Badgley (Twipped) 98b9fd7934 Libraryify slugify
2020-04-07 10:32:23 -07:00

6 lines
156 B
JavaScript

const slugs = require('slugify');
module.exports = exports = function slugify (s) {
return slugs(s, { remove: /[*+~.,()'"!?:@/\\]/g }).toLowerCase();
};