Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
tmacro committed Oct 20, 2023
1 parent bd9e3a8 commit a033235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bucketVersionsStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ function listBucket(bucket, cb) {
}
for (const version of data.Versions) {
if (_OLDER_THAN_TIMESTAMP) {
const parsed = new Date(version.LastModified)
const parsed = new Date(version.LastModified);
if (Number.isNaN(parsed.getTime()) || parsed > _OLDER_THAN_TIMESTAMP) {
continue;
}
Expand Down

0 comments on commit a033235

Please sign in to comment.