UNPKG

npm

Version:

a package manager for JavaScript

11 lines (9 loc) 254 B
const removeTrailingSlashes = (input) => { // in order to avoid regexp redos detection let output = input while (output.endsWith('/')) { output = output.substr(0, output.length - 1) } return output } module.exports = removeTrailingSlashes