fix: use replace instead of replaceAll to support pre-Node16
This commit is contained in:
		| @@ -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 => { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user