This release is 21 versions behind 1.1.4 — the latest version of @std/path. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Utilities for working with file system paths
This package works with Cloudflare Workers, Deno, Browsers


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