@@ -1956,6 +1956,13 @@ Object.defineProperty(exports, "summary", { enumerable: true, get: function () {
19561956 */
19571957var summary_2 = __webpack_require__ ( 665 ) ;
19581958Object . defineProperty ( exports , "markdownSummary" , { enumerable : true , get : function ( ) { return summary_2 . markdownSummary ; } } ) ;
1959+ /**
1960+ * Path exports
1961+ */
1962+ var path_utils_1 = __webpack_require__ ( 573 ) ;
1963+ Object . defineProperty ( exports , "toPosixPath" , { enumerable : true , get : function ( ) { return path_utils_1 . toPosixPath ; } } ) ;
1964+ Object . defineProperty ( exports , "toWin32Path" , { enumerable : true , get : function ( ) { return path_utils_1 . toWin32Path ; } } ) ;
1965+ Object . defineProperty ( exports , "toPlatformPath" , { enumerable : true , get : function ( ) { return path_utils_1 . toPlatformPath ; } } ) ;
19591966//# sourceMappingURL=core.js.map
19601967
19611968/***/ } ) ,
@@ -2048,6 +2055,71 @@ exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHand
20482055
20492056/***/ } ) ,
20502057
2058+ /***/ 573 :
2059+ /***/ ( function ( __unusedmodule , exports , __webpack_require__ ) {
2060+
2061+ "use strict" ;
2062+
2063+ var __createBinding = ( this && this . __createBinding ) || ( Object . create ? ( function ( o , m , k , k2 ) {
2064+ if ( k2 === undefined ) k2 = k ;
2065+ Object . defineProperty ( o , k2 , { enumerable : true , get : function ( ) { return m [ k ] ; } } ) ;
2066+ } ) : ( function ( o , m , k , k2 ) {
2067+ if ( k2 === undefined ) k2 = k ;
2068+ o [ k2 ] = m [ k ] ;
2069+ } ) ) ;
2070+ var __setModuleDefault = ( this && this . __setModuleDefault ) || ( Object . create ? ( function ( o , v ) {
2071+ Object . defineProperty ( o , "default" , { enumerable : true , value : v } ) ;
2072+ } ) : function ( o , v ) {
2073+ o [ "default" ] = v ;
2074+ } ) ;
2075+ var __importStar = ( this && this . __importStar ) || function ( mod ) {
2076+ if ( mod && mod . __esModule ) return mod ;
2077+ var result = { } ;
2078+ if ( mod != null ) for ( var k in mod ) if ( k !== "default" && Object . hasOwnProperty . call ( mod , k ) ) __createBinding ( result , mod , k ) ;
2079+ __setModuleDefault ( result , mod ) ;
2080+ return result ;
2081+ } ;
2082+ Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
2083+ exports . toPlatformPath = exports . toWin32Path = exports . toPosixPath = void 0 ;
2084+ const path = __importStar ( __webpack_require__ ( 622 ) ) ;
2085+ /**
2086+ * toPosixPath converts the given path to the posix form. On Windows, \\ will be
2087+ * replaced with /.
2088+ *
2089+ * @param pth. Path to transform.
2090+ * @return string Posix path.
2091+ */
2092+ function toPosixPath ( pth ) {
2093+ return pth . replace ( / [ \\ ] / g, '/' ) ;
2094+ }
2095+ exports . toPosixPath = toPosixPath ;
2096+ /**
2097+ * toWin32Path converts the given path to the win32 form. On Linux, / will be
2098+ * replaced with \\.
2099+ *
2100+ * @param pth. Path to transform.
2101+ * @return string Win32 path.
2102+ */
2103+ function toWin32Path ( pth ) {
2104+ return pth . replace ( / [ / ] / g, '\\' ) ;
2105+ }
2106+ exports . toWin32Path = toWin32Path ;
2107+ /**
2108+ * toPlatformPath converts the given path to a platform-specific path. It does
2109+ * this by replacing instances of / and \ with the platform-specific path
2110+ * separator.
2111+ *
2112+ * @param pth The path to platformize.
2113+ * @return string The platform-specific path.
2114+ */
2115+ function toPlatformPath ( pth ) {
2116+ return pth . replace ( / [ / \\ ] / g, path . sep ) ;
2117+ }
2118+ exports . toPlatformPath = toPlatformPath ;
2119+ //# sourceMappingURL=path-utils.js.map
2120+
2121+ /***/ } ) ,
2122+
20512123/***/ 605 :
20522124/***/ ( function ( module ) {
20532125
0 commit comments