Back

Javascript URL Create

Copy Below Code View As A Text File Show Text Only Show API Edit Code
                            

function slugify(string) { return string .toString() .trim() .toLowerCase() .replace(/\s+/g, "-") .replace(/[^\w\-]+/g, "") .replace(/\-\-+/g, "-") .replace(/^-+/, "") .replace(/-+$/, ""); }