Linkerin

Member since 13/04/2023

Snippets


1 .fadein { 2 animation: fadein linear 1s; 3 } 4 5 @keyframes fadein { 6 from { opacity: 0; } 7 to { opacity: 1; } 8 }

Linkerin


1 function slugify(value) { 2 return value 3 .toString() 4 .normalize('NFD') // split an accented letter in the base letter and the accent 5 .replace(/[\u0300-\u036f]/g, '') // remove all the accents 6 .toLowerCase() 7 .replace(/[^a-z0-9 -]/g, '') // replace all chars that are not letters, numbers and spaces 8 .trim() 9 .replace(/\s+/g, '-');} 10 slugify('Hello world'); // 'hello-world'