UNPKG

xpm

Version:

The xPack project manager command line tool

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