Socket
Book a DemoInstallSign in
Socket

poly-apply

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

poly-apply

Polymorphic curried functional applicator

1.0.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

poly-apply

Build Status Polymorhic curried functional applicator

Motivation

Removing the difference between Promises and syncronous function arguments greatly simplifies tool-building

Features

  • Seamlessly applies functions to promises and synchronous values
  • Supports functions of one or many arguments
  • Recognises cnostants

Installation

npm install poly-apply

Usage

import apply from 'poly-apply'


const wow = (x, y) => `wow ${x} ${y}!`

// Simple usage
console.log(apply(wow, ['such', 'doge']))
// -> wow such doge!

apply(wow, ['much', Promise.resolve('approve')]).then(console.log)
// -> wow much approve!

apply(wow, Promise.resolve(['very', 'such'])).then(console.log)
// -> wow very such!

// Higher-order function style
const wowApplicator = apply(wow)

console.log(wowApplicator(['such', 'doge']))
// -> wow such doge!

// Constant
const constant = apply('Much Wow!')
console.log(constant(['such', 'doge']))
// -> 'Much Wow!'

Testing

npm test

Keywords

apply

FAQs

Package last updated on 10 Sep 2019

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.