UNPKG

reddit-api-image-getter

Version:

CLI tool and Node.js library to fetch and download images from Reddit subreddits.

17 lines (14 loc) 265 B
class RedditEntryStack { constructor() { this.stack = []; } save(entry) { if (entry.imageUrl !== undefined) { this.stack.push(entry); return this.stack; } else { return undefined; } } } module.exports = RedditEntryStack;