amis-rpc-design/node_modules/slash2/index.js
2023-10-07 19:42:30 +08:00

11 lines
185 B
JavaScript

'use strict';
module.exports = input => {
const isExtendedLengthPath = /^\\\\\?\\/.test(input);
if (isExtendedLengthPath) {
return input;
}
return input.replace(/\\/g, '/');
};