// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.

/**
 * A parsed path object generated by path.parse() or consumed by path.format().
 *
 * @example
 * ```ts
 * import { parse } from "@std/path";
 *
 * const parsedPathObj = parse("c:\\path\\dir\\index.html");
 * parsedPathObj.root; // "c:\\"
 * parsedPathObj.dir; // "c:\\path\\dir"
 * parsedPathObj.base; // "index.html"
 * parsedPathObj.ext; // ".html"
 * parsedPathObj.name; // "index"
 * ```
 */
export interface ParsedPath {
  /**
   * The root of the path such as '/' or 'c:\'
   */
  root: string;
  /**
   * The full directory path of the parent such as '/home/user/dir' or 'c:\path\dir'
   */
  dir: string;
  /**
   * The file name including extension (if any) such as 'index.html'
   */
  base: string;
  /**
   * The file extension (if any) such as '.html'
   */
  ext: string;
  /**
   * The file name without extension (if any) such as 'index'
   */
  name: string;
}

export type FormatInputPathObject = Partial<ParsedPath>;

// denoCacheMetadata={"headers":{"server":"cloudflare","cross-origin-resource-policy":"cross-origin","nel":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}","content-length":"1055","access-control-allow-origin":"*","cf-cache-status":"HIT","vary":"Origin","alt-svc":"h3=\":443\"; ma=86400","report-to":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=w2jhi%2FI4ykY8l5Bo34FjpOHBqB%2BDDkkiW24JlpWcmqWC6qnOpaI8lcdKY5jYiSapj8he0yrJ0mkZYOFoDgWPgiJ5h81tVITn%2FFBrPUOPKpdKtnOg9kz1RhQ%3D\"}]}","cf-ray":"a223e657ba447db6-LAX","access-control-expose-headers":"*","x-robots-tag":"noindex","content-type":"text/typescript","date":"Tue, 28 Jul 2026 12:31:15 GMT","cache-control":"public, max-age=31536000, immutable","age":"3654297","content-security-policy":"default-src 'none'; script-src 'none'; style-src 'none'; img-src 'none'; font-src 'none'; connect-src 'none'; frame-src 'none'; object-src 'none'; frame-ancestors 'none'; sandbox; form-action 'none';","x-jsr-backend":"modules","set-cookie":"__cf_bm=DXJBuhmdtPNerarcH4XbG_asBAZVzB_NwfK26yZD60E-1785241875.1522887-1.0.1.1-fyDDmgh.XT.91J.54d_UEshi88aOktwMHuemgdl.IdCWoYqbPnGWX8klhfKs_dVf6UHj2eXV.9L4UQyC90n9ZBAH12FlXOkJ.hoVl_CAyTCbSPLscYURk5LjGvMjyBlS; HttpOnly; SameSite=None; Secure; Path=/; Domain=jsr.io; Expires=Tue, 28 Jul 2026 13:01:15 GMT","accept-ranges":"bytes","etag":"\"d15991935c2cb42513547fbca0acb2f2\"","x-content-type-options":"nosniff"},"url":"https://jsr.io/@std/path/0.224.0/_interface.ts","time":1785241875}