korma
v0.0.4
Published
A helper module that creates a currying function
Downloads
4
Readme
Korma
Example
var korma = require('korma');
var seeya = korma(function(str1, str2){
return str1.concat(' ').concat(str2);
}, 'Thats all folks.');
seeya('See you next time'); // 'Thats all folks. See you next time'
Installation
Node
To install korma in a Node application use npm.
$ npm install korma
Test
To run tests use npm.
$ npm install
$ npm test
License
Copyright (c) 2014 Chris Johnson