This release is 27 versions behind 1.1.4 — the latest version of @std/path. Jump to latest
Utilities for working with file system paths
This package works with Cloudflare Workers, Deno, Browsers


JSR Score
94%
Published
2 years ago (0.218.0)
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "jsr:@std/assert@^0.218.0"; import { joinGlobs } from "./join_globs.ts"; import { SEPARATOR } from "./mod.ts"; Deno.test("joinGlobs() checks options.globstar", function () { assertEquals(joinGlobs(["**", ".."], { globstar: true }), `**${SEPARATOR}..`); });