Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

galago

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

galago

galago, very specific helper functions for functional-like programming in js

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

galago

galago /ɡəˈleɪɡoʊz/ is a set of very specific, opinionated helper functions for functional-like programming in js. It’s also the name of this animal.

🚧 Work in progress, but feel free to:

yarn add galago
# or
npm install galago --save

Or grab the source from src/index.js or lib/index.js (ES2015) and pluck it into your codebase as vendor code. The world is your oyster. ¯\_(ツ)_/¯

reduceFns

Recursively reduces an a array of functions (which can even be async) by being a typical compose function / pipe mechanism. It stops reducing the supplied arguments if one of the functions returns the specified error key in it’s response.

Info:

  • @param {*} acc - used to provide the initial value
  • @param {array} fns - array of function to execute
  • @param {?function} reducedFn - optional function with signature fn(x: Any): Boolean; if returning true, exits the call and returns the last result
  • @returns {Promise}

Usage example:

const fakeHttpEndpoint = (requestBody) =>
  reduceFns(
    requestBody, // acc param
    [ // list of functions
      parse,
      validate,
      transform,
      saveToDb,
    ],
    isReduced // reducedFn param
  );

Full explenation and code here.

You can also clone the repo and run yarn run example:fakeHttp to run this sample code.

branch2

🚧 TODO 🚧

branchMultiple

🚧 TODO 🚧

Keywords

FAQs

Package last updated on 07 Nov 2017

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