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

underscorify

v1.0.0

Published

an itty bitty curry utility

Downloads

11

Readme

_ify – an itty bitty curry utility

transform the function such that you can fix any of the arguments, passing _ as a "placeholder".

If any places are not filled, it returns a "callback" instead of executing the function. It also returns a callback the first time, even if you didn't give it any holes. (But in that case, it's not awaiting anything so just () will execute it.)

An underbar _ is a "hole". It keeps trying to fill the holes until there are none left. Once you've _ified the function, it can receive holes, and will handle them appropriately. When all the holes are filled, it executes the function.

A triple-underbar ___ is a bigger hole. The remaining arguments all fall into it.

Enough talk. Example time!

function timesSquared (x, y) { return x * y * y }
var times2Squared = _(timesSquared)( _, 2 ) or timesSquared._(_, 2);
times2Squared(3) = timesSquared(3, 2) = 12

In the _ified function, if all the spaces are not filled in, it returns another _ified function with the remaining spaces blank.

More examples:

f._(_,_) ==> curryable function requiring 2 args
f._(_,_)(x) ==> f._(x,_) ==> function curried to 1 arg, requiring one more for execution
f._(_)._(_) ==> passing _ leaves the hole open, so this is the same as just f._(_)

in general, doing ._() just needs to happen once. doing it a second time is unnecessary.

f._(_)(_,_) ==> passes _ as the first arg, then the second, so it's the same as f._(_,_)
f._(_,_)(_,_,_) ==> f._(_,_,_)
f._(_,_,_)(1,_,2) ==> f._(1,_,2) still awaiting second argument.
f._(_,_,_)(1,_,2)(3) ==> f._(1,_,2)(3) ==> f(1,3,2)
f._(_,1)(2,3,4) ==> f(2,1,3,4) additional args are appended to list.
f._(___,_,1) ==> additional args go in the ___ member, if one is provided.
f._(___,1)(___,2)(3,4,5) ==> f._(___,1,2)(3,4,5) a big hole fills a big hole
f._(___,_,1)(___,2) ==> f._(___,2,1) right-hand curried with 2,1
f._(___,_,1)(___,2)(3,4,5) ==> f._(___,2,1)(3,4,5) ==> f(3,4,5,2,1)
f._(___,1,2) is just like Y.rbind(f, null, 1, 2)
f._(1,___,_,2)(___,3)(4,5) ==> f._(1,___,3,2)(4,5) ==> f(1,4,5,3,2)

extra args will go into the first ___ that is found. so, if there are two, you have to call it twice.

f._(___,___)(1,2)(3,4,5) ==> f._(1,2,___)(3,4,5) ==> f(1,2,3,4,5)

You can use ___ to dig a hole deeper.

f._(_,1)(___,2)(3,4,5) ==> f._(___,1,2)(3,4,5) ==> f(3,4,5,1,2)
f._(_)(___,1)(2,3,4) ==> f._(___,1)(2,3,4) ==> f(2,3,4,1)

furthermore...

_(f) === f._
_(f)(1,_) === f._(1,_)
// etc.

But wait! There's more!

f._(1,2,3) ==> ?

No holes, so what happens? It doesn't quite make sense to have it just do the same thing as f(1,2,3) So, instead, it returns a callback that can take _ arguments.

So:

f._(1,2,3)(a,_,c)(b) === f(1,2,3,a,b,c)
setTimeout(foo._(bar)),0) === setTimeout(function () { foo(bar) }, 0)
f._()(1,_,2,___)(3)(4,5,6) === f._(1,3,2,___)(4,5,6) === f(1,3,2,4,5,6)
f._(1,2)(___,3,4)(5,6) === f._(1,2,___,3,4)(5,6) === f(1,2,5,6,3,4)

So how do I fix scope, you ask?

With the ___!

It works just like _, but the first argument is used to set the scope.

so,

f.___(obj, 1, 2) ==> function () { return f.call(obj, 1, 2) }

This doesn't execute immediately, because remember there's always at least one level of indirection (otherwise it's pointless, and you can always add () if you really want it to execute right away.)

This one executes right away, because there's already a single redirection.

___(f, obj)(1, 2) ==> f.___(obj)(1,2) ==> (function () { return f.call(obj, 1, 2) } )()

And of course, this works, too:

f.___(obj, 1)(_, 2)(3) ==> f.call(obj, 1, 3, 2)

But I don't like _ and ___ (or I'm already using them for something else)

That's fine. You can use the _.load and _.unload functions to swap out new symbols. Maybe you like to call them $ and $$$ instead of _ and ___. Great. Just do this:

_.unload.load({_:"$", ___:"$$$"})

Any string is fine, but some will lead to uglier code, of course. This is not pretty:

myFunction["BLΩRHEHA(F#HA(HFZZXNBFZ..#H(A"](window["BLΩRHEHA(F#HA(HFZZXNBFZ..#H(A"], 2)

ƒ and µ are valid and pretty identifiers and reasonably pretty and easy to type (on a mac). You could even remove all global references to _ and ___, and just use them as private vars. The _.unload() function returns an object with references to _ and ___, so you can do whatever you want with that. For instance:

var myUnderscore = _.unload();

and then _ is at myUnderscore._ and ___ is on myUnderscore.___, and you can use them just as if they were the globals. For example:

_.unload.load({ _ : "$", ___ : "derp" }); // unload the globals, and load the new ones.
$(f)(1,2,3)() ==> f(1,2,3)
$(f)(1,$,2)(3) ==> f(1,3,2)
f.$(1,$,2)(3,$)($,4)(5) ==> f.$(1,3,2,$)($,4)(5) ==> f.$(1,3,2,$,4)(5) ==> f(1,3,2,5,4)
f.derp(obj, $, 1)(2) ==> f.call(obj, 2, 1)
f.$(derp, 1, 2)(4,5,6) ==> f(4,5,6,1,2)

// of course, this means you can't do f._() or f.___()
var y = _.unload();
y._(f)(1,2,3)() ==> f(1,2,3)
y.___(f, obj)(1,2,3)() ==> f.call(obj, 1,2,3)
y._(f, y.___, 1, 2, y._)(3,4,5)(6) ==> f(3,4,5,1,2,6)

Basically, you'd just be changing the symbol that's used in all the examples below. From now on, I'm going to use _ and ___, because think those are prettiest.