npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fj-bind

1.0.0

@schtoeffel

npmHomeRepoSnykSocket
Downloads:0
$ npm install fj-bind
DailyWeeklyMonthlyYearly

fj-bind

Build Status npm version

Bind a context to a function FP-style

Installation

npm install fj-bind --save

Usage

var bind = require('fj-bind');

var bindToMe = bind(me); // me is a object

bindToMe(func1);
bindToMe(func2);

API

context -> function

A curried function that expects:

  • context [required] : The context to bind to a function

  • function [required]: The function which is bound to the context