UNPKG
@saiforceone/dirt-cli
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.1
0.2.0
0.0.3
0.0.2
0.0.1
Official CLI Utility for the D.I.R.T stack
github.com/saiforceone/dirt-cli
saiforceone/dirt-cli
@saiforceone/dirt-cli
/
dist
/
utils
/
fileUtils.js
8 lines
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
/** *
@description
Helper function that fixes windows file paths. Not needed for Posix *
@param
{
string
}
filePath
*/
export
function
normalizeWinFilePath
(
filePath
) {
return
filePath.
replace
(
/^([A-Z]:\\)([A-Z]:\\)/i
,
'$2'
); }
//# sourceMappingURL=fileUtils.js.map