Giles eb25b32d49 | ||
---|---|---|
.drone | ||
.gitignore | ||
.versionrc.json | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
compose.libsonnet | ||
package.json | ||
yarn.lock |
README.md
compose
functional composition for jsonnet
local compose = import 'node_modules/jsonnet-compose/compose.libsonnet';
compose([
function(x) x+1,
function(x) x+2,
])(1)