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
/
src
/
utils
/
fileUtils.ts
8 lines
(7 loc)
•
238 B
text/typescript
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: string
) {
return
filePath.
replace
(
/^([A-Z]:\\)([A-Z]:\\)/i
,
'$2'
); }