1const removeTrailingSlashes = (input) => { 2 // in order to avoid regexp redos detection 3 let output = input 4 while (output.endsWith('/')) { 5 output = output.slice(0, -1) 6 } 7 return output 8} 9 10module.exports = removeTrailingSlashes 11