Files
camila/node_modules/msedge-tts/dist/utils.js
T

11 lines
264 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.joinPath = void 0;
const joinPath = (...parts) => {
return parts
.filter(Boolean)
.join("/")
.replace(/\/{2,}/g, "/");
};
exports.joinPath = joinPath;