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

ffuncs

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ffuncs

a functional library based on ramda

2.0.3
latest
Source
npm
Version published
Weekly downloads
8
-38.46%
Maintainers
2
Weekly downloads
 
Created
Source

ffuncs

A small functional library for JavaScript which is an enhancement of ramda.

Contents

const ff = require("ffuncs");

ff.curry;   // a function that curries the given function.
            // uses the `length` property of a function,
            // so functions using the `...` operator
            // may provide unexpected behaviour when
            // curried

let add = (x, y) => x + y;

let addFive = ff.curry(add)(5);

console.log([1, 2, 3, 4]).map(addFive);     // [6, 7, 8, 9]

ff.vectorize;   // this takes a unary (single-arg) or
                // binary (double-arg) function as input
                // and applies it over arrays.

let vadd = ff.vectorize(add);
console.log(vadd(2, 5));                    // 7
console.log(vadd(5, [1, 2, 3, 4]));         // [6, 7, 8, 9]
console.log(vadd([1, 2], [3, 4]));          // [4, 6]

ff.memoize;     // memoizes a numeric function.
                // ...
                // you know what this is

ff.integrate(global);

// now you can use the functions within the global scope

curry(add)(3)(7) == 10;

// etc.

Keywords

functional

FAQs

Package last updated on 20 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