UNPKG

elm-review

Version:
15 lines (13 loc) 231 B
/** * Format a path so that you can `cd` it. * * @param {string} path * @returns {string} */ function format(path) { const regex = /([^\w%+,./:=@-])/g; return path.replace(regex, '\\$1'); } module.exports = { format };