Created
June 24, 2016 22:35
-
-
Save dumconstantin/84ea597b50007522c24ce85f1e94cb71 to your computer and use it in GitHub Desktop.
Helpers for TodoMVC
This file contains hidden or 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
(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