Skip to content

Commit

Permalink
removing commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmendelowitz committed Oct 30, 2023
1 parent b16f982 commit a028278
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/helpers/mapperUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ class DateFilterMapper extends AggregateMapper {
filter: (r) => r.resource.resourceType === this.resourceType,
exclude: (r) => {
const date = fhirpath.evaluate(r.resource, DateFormatByResourceType[this.resourceType])[0];
// const date = resource[DateFormatByResourceType[this.resourceType]];
const time = new Date(date).getTime();
const start = (new Date(this.startDate)).getTime();
const end = (new Date(this.endDate)).getTime();
Expand Down

0 comments on commit a028278

Please sign in to comment.