Guest User

Untitled

a guest
Apr 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. export const title_to_text_id = (title): string => {
  2. return title.toString().toLowerCase()
  3. .replace(/\s+/g, '_') // Replace spaces with _
  4. .replace(/[^\w\-]+/g, '') // Remove all non-word chars
  5. .replace(/\-+/g, '') // Replace multiple - with single _
  6. .replace(/^_+/, '') // Trim - from start of text
  7. .replace(/_+$/, '');
  8. }
Add Comment
Please, Sign In to add comment