component-bind

WebJar for component-bind

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

component-bind
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

component-bind
WebJar for component-bind
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/component/bind

Download component-bind

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/component-bind/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>component-bind</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/component-bind/
implementation 'org.webjars.npm:component-bind:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/component-bind/
implementation ("org.webjars.npm:component-bind:1.0.0")
'org.webjars.npm:component-bind:jar:1.0.0'
<dependency org="org.webjars.npm" name="component-bind" rev="1.0.0">
  <artifact name="component-bind" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='component-bind', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "component-bind" % "1.0.0"
[org.webjars.npm/component-bind "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

bind

Function binding utility.

Installation

$ component install component/bind

API

bind(obj, fn)

should bind the function to the given object.

var tobi = { name: 'tobi' };

function name() {
  return this.name;
}

var fn = bind(tobi, name);
fn().should.equal('tobi');

bind(obj, fn, ...)

should curry the remaining arguments.

function add(a, b) {
  return a + b;
}

bind(null, add)(1, 2).should.equal(3);
bind(null, add, 1)(2).should.equal(3);
bind(null, add, 1, 2)().should.equal(3);

bind(obj, name)

should bind the method of the given name.

var tobi = { name: 'tobi' };

tobi.getName = function() {
  return this.name;
};

var fn = bind(tobi, 'getName');
fn().should.equal('tobi');

License

MIT

org.webjars.npm

Components

modular components for component

Versions

Version
1.0.0