Skip to content

Instantly share code, notes, and snippets.

@andreidmt
Last active October 31, 2018 13:41
Show Gist options
  • Select an option

  • Save andreidmt/6a490eea206d272f11724579cbc67db5 to your computer and use it in GitHub Desktop.

Select an option

Save andreidmt/6a490eea206d272f11724579cbc67db5 to your computer and use it in GitHub Desktop.
const { count, filter } = require("functial-lib")
const todos = [{isDone: true, ...}, {...}]
const todosIsDoneCount = todos
|> filter(todosFilterElm => todosFilterElm.isDone === true)
|> count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment