Files
agent-claw/cdk/node_modules/aws-cdk-lib/pipelines/lib/private/fs.js
2026-05-06 18:55:16 -05:00

2 lines
295 B
JavaScript

"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.toPosixPath=toPosixPath;var path=()=>{var tmp=require("path");return path=()=>tmp,tmp};function toPosixPath(osPath,currentSep){const regex=new RegExp(`\\${currentSep??path().sep}`,"g");return osPath.replace(regex,"/")}