fj-and

1.0.1 • Public • Published

fj-and

Build Status npm version

x && y

Installation

npm install fj-and --save

Usage

var and = require('fj-and');
 
let T = () => true;
let F = () => false;
 
and(T, T)()); // => true
and(T)(T)()); // => true
and(T, F)()); // => false
and(F, F)()); // => false
and(F, F)()); // => false

API

and

and(p1, p2)

Parameters

Name Type Description
p1 function A function that returns true or false
p2 function A function that returns true or false

Returns

Type Description
function Returns a function which returns true if p1 and p2 return true

/fj-and/

    Package Sidebar

    Install

    npm i fj-and

    Weekly Downloads

    2

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • schtoeffel
    • hemanth