deno.land / std@0.224.0 / path / _common / basename.ts

View Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { assertPath } from "./assert_path.ts";
export function stripSuffix(name: string, suffix: string): string { if (suffix.length >= name.length) { return name; }
const lenDiff = name.length - suffix.length;
for (let i = suffix.length - 1; i >= 0; --i) { if (name.charCodeAt(lenDiff + i) !== suffix.charCodeAt(i)) { return name; } }
return name.slice(0, -suffix.length);}
export function lastPathSegment( path: string, isSep: (char: number) => boolean, start = 0,): string { let matchedNonSeparator = false; let end = path.length;
for (let i = path.length - 1; i >= start; --i) { if (isSep(path.charCodeAt(i))) { if (matchedNonSeparator) { start = i + 1; break; } } else if (!matchedNonSeparator) { matchedNonSeparator = true; end = i + 1; } }
return path.slice(start, end);}
export function assertArgs(path: string, suffix: string) { assertPath(path); if (path.length === 0) return path; if (typeof suffix !== "string") { throw new TypeError( `Suffix must be a string. Received ${JSON.stringify(suffix)}`, ); }}
std

Version Info

Tagged at
4 months ago