npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

js-lambda

v0.0.2

Published

DSL for lambda calculus

Downloads

4

Readme

build status

js-lambda

DSL for, but not limited to, the lambda calculus.

USAGE

In Browser

<script src="lambda.js"></script>

node.js

var lambda = require('./lambda.js').lambda,
λ = lambda;

SYNOPSIS

lambda("x:x")(42) === 42;
λ("x:x")(42) === 42;                        // λ = lambda
λ("n:n<=1?n:n*_0(n-1)")(10) === 3628800;    // _0 for recursion
λ("x,y:Math.sqrt(x*x+y*y)")(3,4) === 5;     // multiple arguments, 
λ("x:λ(y:Math.sqrt(x*x+y*y))")(3)(4) === 5; // λ can be nested
// church numerals
var cn2num = λ("f:f(λ(n:n+1))(0)"),
succ = λ("n:λ(f:λ(x:f(n(f)(x))))"),
zero = λ("f:λ(x:x)"),
one = succ(zero),
add = λ("m:λ(n:m("+succ+")(n))"),
two = add(one)(one),
mul = λ("m:λ(n:m("+add+"(n))("+zero+"))"),
four = mul(two)(two),
pow = λ("b:λ(e:e(b))"),
sixteen = pow(two)(four);
cn2num(sixteen) === 16;

DESCRIPTION

This script exports lambda() and its alias λ(). As seen in the synopsis, it is a DSL compiler that returns a function.

the lambda notation

As seen in SYNOPSYS,

lambda(arg0,arg1,...argn:expression)

Turns into:

function(arg0, arg1, ...argn){return expression }

nesting and recursion

As seen in SYNOPSYS, the lambda can be nested.

λ('x:λ(y:Math.sqrt(x*x+y*y))');

Turns into:

function _0(x){return function _1(y){return Math.sqrt(x*x+y*y)}}

As seen above, the function is named accordingly to De Bruijin index. _n is the nth level function.

Use the name to implement self-recursion. The strict mode has deprived us of beloved arguments.callee but with lambda.js, it is as short as _0.

// function fact(n){ return n <= 1 ? n : n * fact(n-1) }
λ("n:n<=1?n:n*_0(n-1)");

limitation

To use lexical functions, you have to "interpolate".

var succ = λ("n:λ(f:λ(x:f(n(f)(x))))"),
add = λ("m:λ(n:m("+succ+")(n))");	// λ("m:λ(n:m(succ)(n))") does not work

This is because lambda() needs to eval() to compile the function but lexicals are out of its scope.

memoization

By default, the compiled function is memoized. Suppose you have:

function rms(ary) {
    return Math.sqrt(ary.reduce(λ("t,x:t+x*x"), 0))
}

And you use rms over and over, the same function is used throughout the session. If that is not what you want, you can suppress it by passing truish value to the second argument:

var uncached = lambda("a,b,c:...", true);

And if you wish, you can inspect cached functions via lambda.memo.

SEE ALSO

  • http://docs.python.org/2/tutorial/controlflow.html#lambda-forms
  • http://www.ruby-doc.org/core-2.0/Kernel.html#method-i-lambda
  • https://developer.mozilla.org/en-US/docs/JavaScript/Reference/arrow_functions