lambdajson-js
v1.1.1
Published
LambdaJSON to JavaScript function compiler
Maintainers
Readme
LambdaJSON to JavaScript compiler
LambdaJSON is a JSON based pure functional programming language: https://github.com/benokit/json-programming-language/tree/main
Quick start
import { compile } from 'lambdajson-js';
const program = {
$sum: ['#', 2]
};
const f = compile(program);
console.log(f(1)); // => 3