Skip to main content
Module

std/url/mod.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2024 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";