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 72f6f15 commit 105b492
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Library/Files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 105b492

Please sign in to comment.