const slugify = str => str .toLowerCase() .trim() .replace(/[^ws-]/g, '') .replace(/[s_-]+/g, '-') .replace(/^-+|-+$/g, '');