It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
9
backend/node_modules/slash/index.js
generated
vendored
Normal file
9
backend/node_modules/slash/index.js
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
export default function slash(path) {
|
||||
const isExtendedLengthPath = path.startsWith('\\\\?\\');
|
||||
|
||||
if (isExtendedLengthPath) {
|
||||
return path;
|
||||
}
|
||||
|
||||
return path.replace(/\\/g, '/');
|
||||
}
|
Reference in New Issue
Block a user