Socket
Book a DemoInstallSign in
Socket

papply

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

papply

left and right partial application without context

unpublished
latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

papply

Build status

Left and right partial application without context

Installation

node.js or component

$ npm install papply
$ component install manuelstofer/papply

Usage

var papply  = require('papply'),
    lpApply = papply.lpApply,
    rpApply = papply.rpApply;

function concat (a, b, c) {
    return a + ' ' + b + ' ' + c;
}

lpApply(concat, '1', '2')('3'); // -> 1 2 3
rpApply(concat, '1', '2')('3'); // -> 3 1 2

FAQs

Package last updated on 01 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts