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

chained-function

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chained-function

Chained function calls

0.5.0
latest
Source
npm
Version published
Weekly downloads
9.4K
-30.26%
Maintainers
1
Weekly downloads
 
Created
Source

chained-function build status Coverage Status

NPM

Installation

npm install --save chained-function

Usage

let sum = 0;
const func = chainedFunction(
    function(val) {
        sum += val;
        console.log(sum); // 2
    },
    function(val) {
        sum += val;
        console.log(sum); // 4
    },
    function(val) {
        sum += val;
        console.log(sum); // 6
    }
);

func(2);

React

import React, { Component, PropTypes } from 'react';
import chainedFunction from 'chained-function';

class extends Component {
    static propTypes = {
        onClick: PropTypes.func
    };
    static contextTypes = {
        $parent: PropTypes.shape({
            onClick: PropTypes.func
        })
    };

    actions = {
        handleClick: (event) => {
        }
    }

    render() {
        const { onClick, ...props } = this.props;
        const parent = this.context.$parent;

        <a
            {...props}
            onClick={chainedFunction(
                this.actions.handleClick,
                onClick,
                parent && parent.onClick
            )}
        />
    }
}

License

MIT

Keywords

chained

FAQs

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