@@ -425,6 +425,13 @@ Object.defineProperty(exports, "summary", ({ enumerable: true, get: function ()
425
425
*/
426
426
var summary_2 = __nccwpck_require__(1327);
427
427
Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } }));
428
+ /**
429
+ * Path exports
430
+ */
431
+ var path_utils_1 = __nccwpck_require__(2981);
432
+ Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } }));
433
+ Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } }));
434
+ Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } }));
428
435
//# sourceMappingURL=core.js.map
429
436
430
437
/***/ }),
@@ -562,6 +569,71 @@ exports.OidcClient = OidcClient;
562
569
563
570
/***/ }),
564
571
572
+ /***/ 2981:
573
+ /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
574
+
575
+ "use strict";
576
+
577
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
578
+ if (k2 === undefined) k2 = k;
579
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
580
+ }) : (function(o, m, k, k2) {
581
+ if (k2 === undefined) k2 = k;
582
+ o[k2] = m[k];
583
+ }));
584
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
585
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
586
+ }) : function(o, v) {
587
+ o["default"] = v;
588
+ });
589
+ var __importStar = (this && this.__importStar) || function (mod) {
590
+ if (mod && mod.__esModule) return mod;
591
+ var result = {};
592
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
593
+ __setModuleDefault(result, mod);
594
+ return result;
595
+ };
596
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
597
+ exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0;
598
+ const path = __importStar(__nccwpck_require__(1017));
599
+ /**
600
+ * toPosixPath converts the given path to the posix form. On Windows, \\ will be
601
+ * replaced with /.
602
+ *
603
+ * @param pth. Path to transform.
604
+ * @return string Posix path.
605
+ */
606
+ function toPosixPath(pth) {
607
+ return pth.replace(/[\\]/g, '/');
608
+ }
609
+ exports.toPosixPath = toPosixPath;
610
+ /**
611
+ * toWin32Path converts the given path to the win32 form. On Linux, / will be
612
+ * replaced with \\.
613
+ *
614
+ * @param pth. Path to transform.
615
+ * @return string Win32 path.
616
+ */
617
+ function toWin32Path(pth) {
618
+ return pth.replace(/[/]/g, '\\');
619
+ }
620
+ exports.toWin32Path = toWin32Path;
621
+ /**
622
+ * toPlatformPath converts the given path to a platform-specific path. It does
623
+ * this by replacing instances of / and \ with the platform-specific path
624
+ * separator.
625
+ *
626
+ * @param pth The path to platformize.
627
+ * @return string The platform-specific path.
628
+ */
629
+ function toPlatformPath(pth) {
630
+ return pth.replace(/[/\\]/g, path.sep);
631
+ }
632
+ exports.toPlatformPath = toPlatformPath;
633
+ //# sourceMappingURL=path-utils.js.map
634
+
635
+ /***/ }),
636
+
565
637
/***/ 1327:
566
638
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
567
639
0 commit comments