eponymous functions from the SKI calculus
$ npm install ski
var ski = require(ski)
var S = ski.S
var K = ski.K
var I = ski.I
var log = console.log.bind(console)
var tenner = S(K, log, 10)
// 10 logged to console
// tenner === 10
var truth = ski.K(true)
truth()
// => true
ski.I(5)
// => 5
The module is also split into files, so you can use commonjs path syntax to only load the function(s) you need:
var S = require('ski/s')
var K = require('ski/k')
var I = require('ski/i')
descriptions adapted from wikipedia:
I returns its argument:
I(x) => x
K, when applied to any argument x, yields a one-argument constant function Kx , which, when applied to any argument, returns x:
K(x) => (y) => x
S is a substitution operator. It takes three arguments and then returns the first argument applied to the third, which is then applied to the result of the second argument applied to the third. More clearly:
S(x, y, z) === x(z)(y(z))
CC 0 (public domain)