New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

plumb

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

plumb

functional composition sugar

0.1.0
latest
npm
Version published
Weekly downloads
11K
-25.4%
Maintainers
1
Weekly downloads
 
Created
Source

plumb

functional composition sugar

usage

var plumb = require('plumb')

var reverseString = plumb(
  plumb.invoke('split')
  plumb.invoke('reverse')
  plumb.invoke('join','')
)
// => Function

reverseString('hello')
// => "olleh"

api

Using jsig notation

plumb(...fns: Function) => (val: Value) => Value

Reutrns a function composing each of the argument functions in order. The return value of each function is used as the argument for each successive function.

plumb.pipe(val: Value, ...fns: Function) => Value

Immediately invoke a composition of functions fns on the value val. It helps me to think about fns as a crazy pachinko machine and val as the ball going in.

Equivalent to plumb(fns)(val)

plumb.invoke(methodName: String, ...args?: Value) => Function

Creates a function which invokes a method on an object, optionally with fixed arguments.

Example:

plumb.invoke('foo','bar')

returns the equivalent of

function callFoo(obj) {
  return obj.foo('bar')
}

plumb.tap(fn: Function) => (Value) => Value

Create a function which passes a value through (identity) and calls a function fn with that value.

Example:

var log = plumb.tap(function (x) { console.log(x)})

log(10)
// => 10
// side effect: console.log(10) was called

installation

$ npm install plumb

running the tests

From project root:

$ npm install
$ npm test

contributors

jden jason@denizac.org

license

MIT. (c) 2013 Agile Diagnosis hello@agilediagnosis.com See LICENSE.md

"...and visions of sugarplums danced in their heads"

Keywords

functional

FAQs

Package last updated on 29 Apr 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