fix: use replace instead of replaceAll to support pre-Node16
This commit is contained in:
parent
003ca51826
commit
5173c4802e
@ -35,7 +35,7 @@ module.exports = {
|
||||
rawPath = rawPath.replace(unsafeCharsRegex, '')
|
||||
if (rawPath === '') { rawPath = 'home' }
|
||||
|
||||
rawPath = rawPath.replaceAll('\\', '').replaceAll('//', '').replaceAll(/\.\.+/ig, '')
|
||||
rawPath = rawPath.replace(/\\/g, '').replace(/\/\//g, '').replace(/\.\.+/ig, '')
|
||||
|
||||
// Extract Info
|
||||
let pathParts = _.filter(_.split(rawPath, '/'), p => {
|
||||
|
Loading…
Reference in New Issue
Block a user