UNPKG

@tricoteuses/senat

Version:

Handle French Sénat's open data

19 lines (18 loc) 414 B
import originalSlugify from "slug"; const slugifyCharmap = { ...originalSlugify.defaults.charmap, "'": " ", "@": " ", ".": " ", "-": "_", }; export function slugify(string, replacement) { const options = { charmap: slugifyCharmap, mode: "rfc3986", }; if (replacement) { options.replacement = replacement; } return originalSlugify(string, options); }