Created
May 24, 2017 14:17
-
-
Save meltingice/e979eb15c7ea8c82f5936fe86d93ee4f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
comments. | |
reject { |comment| | |
# Comment is deleted with no children, always hide | |
next true if deleted?(comment) && comment['children'].empty? | |
# Comment is your own, always show | |
next false if is_own_comment?(comment) | |
# Pending comment with no replies | |
next true if pending?(comment) && comment['children'].empty? | |
# Comment is good, keep it | |
false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment