Skip to content

Commit

Permalink
Test husky
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McDonnell committed Mar 19, 2022
1 parent 60acdc0 commit 361c789
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions deno/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,8 @@ export abstract class ZodType<
this.transform = this.transform.bind(this);
this.default = this.default.bind(this);
this.describe = this.describe.bind(this);

this.isNullable = this.isNullable.bind(this);
this.isOptional = this.isOptional.bind(this);
this.isNullable = this.isNullable.bind(this);
}

optional(): ZodOptional<this> {
Expand Down
3 changes: 1 addition & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,8 @@ export abstract class ZodType<
this.transform = this.transform.bind(this);
this.default = this.default.bind(this);
this.describe = this.describe.bind(this);

this.isNullable = this.isNullable.bind(this);
this.isOptional = this.isOptional.bind(this);
this.isNullable = this.isNullable.bind(this);
}

optional(): ZodOptional<this> {
Expand Down

0 comments on commit 361c789

Please sign in to comment.