deno.land / std@0.201.0 / url / mod.ts
1234567891011121314151617// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * Utilities for working with URL paths. * * This module is browser compatible. * * @module */
export * from "./basename.ts";export * from "./dirname.ts";export * from "./extname.ts";export * from "./join.ts";export * from "./normalize.ts";
Version Info