Socket
Socket
Sign inDemoInstall

call-bind

Package Overview
Dependencies
6
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    call-bind

Robustly `.call.bind()` a function


Version published
Weekly downloads
48M
increased by1.67%
Maintainers
1
Install size
152 kB
Created
Weekly downloads
 

Package description

What is call-bind?

The call-bind npm package is a utility that allows you to use the ECMAScript 5 .call and .apply methods with a fixed this value. It is particularly useful when you want to ensure that the context (the this value) of a function call is bound to a specific object, regardless of how the function is invoked. This can be helpful in functional programming and when dealing with higher-order functions that might change the context of a function call.

What are call-bind's main functionalities?

callBind

Provides a way to use the native call method in a bound fashion, ensuring the this value is fixed when invoking a function.

const callBind = require('call-bind');
const call = callBind.call;
const unboundSlice = Array.prototype.slice;
const slice = call(unboundSlice);

function example() {
  const args = slice(arguments);
  console.log(args);
}

example(1, 2, 3); // Logs: [1, 2, 3]

applyBind

Allows you to use the native apply method in a bound manner, similar to callBind but for functions that expect an array of arguments.

const callBind = require('call-bind');
const apply = callBind.apply;
const unboundForEach = Array.prototype.forEach;
const forEach = apply(unboundForEach);

function example(array, callback) {
  forEach(array, callback);
}

example([1, 2, 3], function(element) { console.log(element); }); // Logs: 1, 2, 3

Other packages similar to call-bind

Changelog

Source

v1.0.2 - 2021-01-11

Commits

  • [Fix] properly include the receiver in the bound length dbae7bc

Readme

Source

call-bind

Robustly .call.bind() a function.

Keywords

FAQs

Last updated on 11 Jan 2021

Did you know?

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc