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

Make getSearchTweets private? #74

Open
Ryuno-Ki opened this issue Mar 1, 2023 · 0 comments
Open

Make getSearchTweets private? #74

Ryuno-Ki opened this issue Mar 1, 2023 · 0 comments

Comments

@Ryuno-Ki
Copy link

Ryuno-Ki commented Mar 1, 2023

Looking at

tweetback/src/twitter.js

Lines 54 to 62 in d03e289

getSearchTweets(tweets, searchObj) {
return tweets.filter(tweet => {
return this.isSearchMatch(tweet, searchObj.term, searchObj.caseSensitive, searchObj.before) &&
!this.isRetweet(tweet) &&
(searchObj.includeReplies || !this.isMention(tweet) && !this.isReply(tweet));
}).sort(function(a,b) {
return b.date - a.date;
});
}

it appears to be used only within this class. Therefore I suggest to declare it as a private method (by prefixing it with an underscore or using private class feature).

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

1 participant