UNPKG

262 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.normalizeRelPath = void 0;
4function normalizeRelPath(input) {
5 const output = input.replace(/\/\/+/g, '/');
6 return output;
7}
8exports.normalizeRelPath = normalizeRelPath;