Skip to main content
This release is 4 versions behind 1.0.8 — the latest version of @std/path. Jump to latest

@std/path@1.0.4
Built and signed on GitHub Actions

Utilities for working with file system paths

This package works with Cloudflare Workers, Deno, Browsers
This package works with Cloudflare Workers
This package works with Deno
This package works with Browsers
JSR Score
94%
Published
7 months ago (1.0.4)
Package root>_common>strip_trailing_separators.ts
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ // This module is browser compatible. export function stripTrailingSeparators( segment: string, isSep: (char: number) => boolean, ): string { if (segment.length <= 1) { return segment; } let end = segment.length; for (let i = segment.length - 1; i > 0; i--) { if (isSep(segment.charCodeAt(i))) { end = i; } else { break; } } return segment.slice(0, end); }