From 105b4921dabba499d122139087edcde7876b12f3 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Tue, 8 Aug 2023 22:26:15 +0300 Subject: [PATCH] squash! --- Source/Library/Files.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Library/Files.ts b/Source/Library/Files.ts index 58a1ffd..8367d27 100644 --- a/Source/Library/Files.ts +++ b/Source/Library/Files.ts @@ -10,14 +10,14 @@ export default class Files { Pipe = async (Callbacks: Executions = Default.Pipe) => await Pipe(this.Plan, Callbacks); - Not = async (Pattern: Options["Exclude"]) => { - this.Plan.Results = await Not(Pattern, this.Plan.Results); + Not = async (File: Options["Exclude"]) => { + this.Plan.Results = await Not(File, this.Plan.Results); return this; }; - By = async (Glob: Pattern | Pattern[] = "**/*") => { - this.Plan.Results = await By(Glob, this.Plan.Paths, this.Plan.Results); + By = async (File: Pattern | Pattern[] = "**/*") => { + this.Plan.Results = await By(File, this.Plan.Paths, this.Plan.Results); return this; };