Sha256: d5ba20cc9486154682ba9f05f7e8e0b7d4985f57713a70ec21fe1043430c9c60
Contents?: true
Size: 1.29 KB
Versions: 26
Compression:
Stored size: 1.29 KB
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizePath = exports.convertSlashes = exports.cleanPath = void 0; const path_1 = require("path"); function cleanPath(path) { let normalized = (0, path_1.normalize)(path); // we have to remove the last path separator // to account for / root path if (normalized.length > 1 && normalized[normalized.length - 1] === path_1.sep) normalized = normalized.substring(0, normalized.length - 1); return normalized; } exports.cleanPath = cleanPath; const SLASHES_REGEX = /[\\/]/g; function convertSlashes(path, separator) { return path.replace(SLASHES_REGEX, separator); } exports.convertSlashes = convertSlashes; function normalizePath(path, options) { const { resolvePaths, normalizePath, pathSeparator } = options; const pathNeedsCleaning = (process.platform === "win32" && path.includes("/")) || path.startsWith("."); if (resolvePaths) path = (0, path_1.resolve)(path); if (normalizePath || pathNeedsCleaning) path = cleanPath(path); if (path === ".") return ""; const needsSeperator = path[path.length - 1] !== pathSeparator; return convertSlashes(needsSeperator ? path + pathSeparator : path, pathSeparator); } exports.normalizePath = normalizePath;
Version data entries
26 entries across 26 versions & 1 rubygems