Skip to content

Instantly share code, notes, and snippets.

@tehvicke
Created February 14, 2020 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tehvicke/52df590ce4701f4824315ef7ddf099f9 to your computer and use it in GitHub Desktop.
Save tehvicke/52df590ce4701f4824315ef7ddf099f9 to your computer and use it in GitHub Desktop.
List thought function
const listThoughts = Thought => number => {
return Thought.find({})
.sort({ _id: 'desc' })
.limit(number)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment