Socket
Socket
Sign inDemoInstall

@blakek/compose

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blakek/compose

🛠 Compose functions and promises


Version published
Maintainers
1
Created
Source

compose

🛠 Compose functions and promises

Code can become complex when several functions wrap others or reduce() is used to combine a list of funtions.

This is an alternative that allows composing a pipeline of functions. It calls each right-to-left and passes the output from the previous to the next.

Install

Using Yarn:

$ yarn add @blakek/compose

…or using npm:

$ npm i --save @blakek/compose

Usage

import { compose } from '@blakek/compose';

const fetchUsers = () =>
  Promise.resolve([
    { sites: { github: { username: 'blakek' } } },
    { sites: { github: { username: 'gsandf' } } },
    { sites: { github: { username: 'google' } } }
  ]);

const getUsers = compose(
  users => users.map(user => user.sites.github.username),
  fetchUsers
);

getUsers().then(console.log); //» [ 'blakek', 'gsandf', 'google' ]

API

compose

function compose(...[fn, ...fns]: Function[]): Function;

Contributing

Node.js and Yarn are required to work with this project.

To install all dependencies, run:

yarn

Useful Commands

yarn buildBuilds the project to ./dist
yarn formatFormat the source following the Prettier styles
yarn testRun project tests
yarn test --watchRun project tests, watching for file changes

License

MIT

Keywords

FAQs

Package last updated on 10 Jun 2020

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

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