UNPKG

yahoo-finance2

Version:
36 lines (35 loc) 1.28 kB
"use strict"; // Copyright 2018-2025 the Deno authors. MIT license. // This module is browser compatible. Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeGlob = normalizeGlob; const normalize_js_1 = require("./normalize.js"); const constants_js_1 = require("./constants.js"); /** * Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. * * @example Usage * ```ts * import { normalizeGlob } from "@std/path/posix/normalize-glob"; * import { assertEquals } from "@std/assert"; * * const path = normalizeGlob("foo/bar/../*", { globstar: true }); * assertEquals(path, "foo/*"); * ``` * * @param glob The glob to normalize. * @param options The options to use. * @returns The normalized path. */ function normalizeGlob(glob, options = {}) { const { globstar = false } = options; if (glob.match(/\0/g)) { throw new Error(`Glob contains invalid characters: "${glob}"`); } if (!globstar) { return (0, normalize_js_1.normalize)(glob); } const s = constants_js_1.SEPARATOR_PATTERN.source; const badParentPattern = new RegExp(`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`, "g"); return (0, normalize_js_1.normalize)(glob.replace(badParentPattern, "\0")).replace(/\0/g, ".."); }