🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

drainpipe

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drainpipe

pipe a value through a chain of functions

0.1.0
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

drainpipe

pipe a value through a chain of functions

vv(23)
  (function(v) { return v * 2 })
  (function(v) { return v + 2 })
  (function(v) { console.log(v) })  // 47

install

node:

$ npm install drainpipe

browser:

$ bower install drainpipe
<script src="/bower_components/drainpipe/drainpipe.js"></script>

api

vv(x)

Takes in a value and starts a drainpipe chain.

vv(x)(fn[, arg1[, arg2[, ...]]])

Takes in a function and optional extra arguments, calls the function with the current value in the drainpipe chain and stores its result as the new value in the drainpipe chain.

function add(a, b) {
  return a + b
}


vv(23)
  (add, 1)
  (add, 3)
  (function(v) { console.log(v) })  // 27

vv(x)()

Returns the current value in the drainpipe chain

var x = vv(23)
  (function(v) { return v * 2 })
  (function(v) { return v + 2 })
  ()

console.log(x)  // 47

Keywords

chain

FAQs

Package last updated on 21 Dec 2014

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