Skip to content
Permalink
758835d67a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit c4a84a9 Apr 22, 2021 History
This commit only adds a single package and all of its transitive
dependencies. The github-linguist package will be used for counting
lines of code as a baseline for databases we are analyzing.
0 contributors

Users who have contributed to this file

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