Skip to content

Instantly share code, notes, and snippets.

@dumconstantin
Created June 24, 2016 22: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 dumconstantin/84ea597b50007522c24ce85f1e94cb71 to your computer and use it in GitHub Desktop.
Save dumconstantin/84ea597b50007522c24ce85f1e94cb71 to your computer and use it in GitHub Desktop.
Helpers for TodoMVC
(function () {
let helpers = {}
helpers.log = R.curry((msg, x) => {
console.log(msg, x)
return x
})
window.helpers = helpers
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment