Skip to content

Commit

Permalink
Merge pull request #41 from narthur/empty-number-fields
Browse files Browse the repository at this point in the history
make getField public
  • Loading branch information
narthur committed Jun 2, 2024
2 parents c2fee65 + b83bc96 commit d03a961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class Row<T extends RowType = RowType, R extends Factory = Factory> {
return parseFloat(this.row.order);
}

protected getField<T>(field: string): T {
public getField<T>(field: string): T {
return this.row[field] as T;
}

Expand Down

0 comments on commit d03a961

Please sign in to comment.