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

andthen

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

andthen - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1-security

24

package.json
{
"name": "andthen",
"version": "0.0.0",
"description": "Async function composition with parameter fixing abiliy.",
"version": "0.0.1-security",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha"
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"fox": "*"
},
"repository": {
"url": "git@github.com:azer\/andthen.git",
"type": "git"
"type": "git",
"url": "git+https://github.com/npm/security-holder.git"
},
"author": "azer",
"license": "BSD"
}
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/security-holder/issues"
},
"homepage": "https://github.com/npm/security-holder#readme"
}

@@ -1,97 +0,9 @@

## andthen
# Security holding package
Async function composition with parameter fixing abiliy.
This package name is not currently in use, but was formerly occupied
by a popular package. To avoid malicious use, npm is hanging on to
the package name, but loosely, and we'll probably give it to you if
you want it.
```bash
$ npm install andthen
```
See Also: [comp](http://github.com/azer/comp)
### Usage
Functions almost same as other function composition libraries, except that it lets you bind a property of a produced value to following function.
Simplest usage could look like:
```js
andThen = require('andThen')
andThen(getContent, 'posts', getPosts, 'images', getImages)(function(error, contents){
contents.posts
// => ['Foo', 'bar', 'qux']
contents.images
// => ['11.jpg', '7.jpg', '3.jpg']
})
function getContents(callback){
callback(undefined, { posts: [3, 1, 4], images: [11, 7, 3])
}
function getPosts(ids, callback){
callback(undefined, ['Foo', 'bar', 'qux'])
}
function getImages(ids, callback){
callback(undefined, ['11.jpg', '7.jpg', '3.jpg'])
}
```
More detailed example with full functional programming armory:
```js
andThen = require('andThen')
map = require('map')
partial = require('new-partial')
getPosts = partial(map, getPost)
getPhotos = partial(map, getPhoto)
getProfile = andThen(getUser, 'posts', getPosts, 'photos', getPhotos)
getProfile(1, function(error, profile){
profile.posts[0].title, profile.posts[2].content
// => Post #1, Content #5
profile.photos[0].path, profile.photos[1].path
// => /photos/2.jpg, /photos/7.jpg
})
function getUser(id, callback){
callback(undefined, {
name : 'Smith',
posts : [1, 3, 5],
photos : [2, 7, 11]
})
}
function getPost(id, callback){
callback(undefined, {
title: 'Post #' + id,
content: 'Content #' + id
})
}
function getPhoto(id, callback){
callback(undefined, {
path: '/photos' + id + '.jpg
})
}
```
![](http://distilleryimage2.s3.amazonaws.com/3e14d1ae8e4711e2af7822000a1fb04e_6.jpg)
You may adopt this package by contacting support@npmjs.com and
requesting the name.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc