"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fixPath = void 0; function fixPath(path) { // special case for windows return path.replace(/\\/g, '/'); } exports.fixPath = fixPath;