Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to only grab posts within a date range? #47

Closed
dissoinfo opened this issue Jan 4, 2018 · 1 comment
Closed

How to only grab posts within a date range? #47

dissoinfo opened this issue Jan 4, 2018 · 1 comment

Comments

@dissoinfo
Copy link

Eg. Only grab posts from a feed from the last 45 days.

Any way to do this via the library? Or an alternative suggestion?

Cheers, lovely plugin so far!

@rbren
Copy link
Owner

rbren commented Jan 4, 2018

There's no way to do this in the library, but I think the below should work:

const MAX_AGE = (new Date()).getTime() - 45 * 24 * 60 * 60 * 1000;
var recentEntries = result.feed.entries.filter(entry => {
  let date = new Date(entry.isoDate);
  return date.getTime() > MAX_AGE;
})

@rbren rbren closed this as completed Jan 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants