Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 8, 2023
1 parent 528d0a6 commit c089720
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/Library/Files/In.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import Apply from "../Apply.js";

export default async (Path: Path, Paths: Plan["Paths"]) => {
const _Path = await Apply(
(Path: string) => (Path.endsWith("/") ? Path : `${Path}/`),
await Apply(
(url: URL | string) => (url instanceof URL ? _Path(url) : url),
Path
),
(Path: string) => (Path.endsWith("/") ? Path : `${Path}/`)
)
);

if (_Path instanceof Map) {
Expand Down
2 changes: 1 addition & 1 deletion Target/Library/Files/In.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c089720

Please sign in to comment.