function addSlash(src) { return src.replace(/^(?!/)|(/{2,})/g, '/');}
addSlash("/d////d");
addSlash("d/d");
addSlash("//d/d");