amis-rpc-design/node_modules/slash2/index.js

11 lines
185 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
'use strict';
module.exports = input => {
const isExtendedLengthPath = /^\\\\\?\\/.test(input);
if (isExtendedLengthPath) {
return input;
}
return input.replace(/\\/g, '/');
};