UNPKG

3.66 kBMarkdownView Raw
1# babel-plugin-transform-function-bind
2
3> Compile the new function bind operator `::` to ES5.
4
5## Detail
6
7```js
8obj::func
9// is equivalent to:
10func.bind(obj)
11
12obj::func(val)
13// is equivalent to:
14func.call(obj, val)
15
16::obj.func(val)
17// is equivalent to:
18func.call(obj, val)
19```
20
21[Try in REPL](http://babeljs.io/repl/#?evaluate=true&presets=es2015%2Cstage-0&code=obj%3A%3Afunc%3B%0A%0Aobj%3A%3Afunc(val)%3B%0A%0A%3A%3Aobj.func(val)%3B)
22
23## Example
24
25### Basic
26
27```js
28const box = {
29 weight: 2,
30 getWeight() { return this.weight; },
31};
32
33const { getWeight } = box;
34
35console.log(box.getWeight()); // prints '2'
36
37const bigBox = { weight: 10 };
38console.log(bigBox::getWeight()); // prints '10'
39
40// Can be chained:
41function add(val) { return this + val; }
42
43console.log(bigBox::getWeight()::add(5)); // prints '15'
44```
45
46[Try in REPL](http://babeljs.io/repl/#?evaluate=true&presets=es2015%2Cstage-0&code=const%20box%20%3D%20%7B%0A%20%20weight%3A%202%2C%0A%20%20getWeight()%20%7B%20return%20this.weight%3B%20%7D%2C%0A%7D%3B%0A%0Aconst%20%7B%20getWeight%20%7D%20%3D%20box%3B%0A%0Aconsole.log(box.getWeight())%3B%20%2F%2F%20prints%20'2'%0A%0Aconst%20bigBox%20%3D%20%7B%20weight%3A%2010%20%7D%3B%0Aconsole.log(bigBox%3A%3AgetWeight())%3B%20%2F%2F%20prints%20'10'%0A%2F%2F%20bigBox%3A%3AgetWeight()%20is%20equivalent%20to%20getWeight.call(bigBox)%0A%0A%2F%2F%20Can%20be%20chained%3A%0Afunction%20add(val)%20%7B%20return%20this%20%2B%20val%3B%20%7D%0A%0Aconsole.log(bigBox%3A%3AgetWeight()%3A%3Aadd(5))%3B%20%2F%2F%20prints%20'15')
47
48### Using with `document.querySelectorAll`
49
50It can be very handy when used with `document.querySelectorAll`:
51
52```js
53const { map, filter } = Array.prototype;
54
55let sslUrls = document.querySelectorAll('a')
56 ::map(node => node.href)
57 ::filter(href => href.substring(0, 5) === 'https');
58
59console.log(sslUrls);
60```
61
62[Try in REPL](http://babeljs.io/repl/#?evaluate=true&presets=es2015%2Cstage-0&code=%0Aconst%20%7B%20map%2C%20filter%20%7D%20%3D%20Array.prototype%3B%0A%0Alet%20sslUrls%20%3D%20document.querySelectorAll('a')%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3A%3Amap(node%20%3D%3E%20node.href)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3A%3Afilter(href%20%3D%3E%20href.substring(0%2C%205)%20%3D%3D%3D%20'https')%3B%0A%0Aconsole.log(sslUrls)%3B%0A)
63
64`document.querySelectorAll` returns a `NodeList` element which is not a plain array, so you normally can't use the `map` function on it, and have to use it this way: `Array.prototype.map.call(document.querySelectorAll(...), node => { ... })`. The above code using the `::` will work because it is equivalent to:
65
66```js
67const { map, filter } = Array.prototype;
68
69let sslUrls = document.querySelectorAll('a');
70sslUrls = map.call(sslUrls, node => node.href);
71sslUrls = filter.call(sslUrls, href => href.substring(0, 5) === 'https');
72
73console.log(sslUrls);
74```
75
76### Auto self binding
77When nothing is specified before the `::` operator, the function is bound to its object:
78
79```js
80$('.some-link').on('click', ::view.reset);
81// is equivalent to:
82$('.some-link').on('click', view.reset.bind(view));
83```
84
85## Installation
86
87```sh
88npm install --save-dev babel-plugin-transform-function-bind
89```
90
91## Usage
92
93### Via `.babelrc` (Recommended)
94
95**.babelrc**
96
97```json
98{
99 "plugins": ["transform-function-bind"]
100}
101```
102
103### Via CLI
104
105```sh
106babel --plugins transform-function-bind script.js
107```
108
109### Via Node API
110
111```javascript
112require("babel-core").transform("code", {
113 plugins: ["transform-function-bind"]
114});
115```
116
117## References
118
119* [Proposal](https://github.com/zenparsing/es-function-bind)
120* [Babel Blog: Function Bind Syntax](/blog/2015/05/14/function-bind)