babel-plugin-transform-function-bind
Advanced tools
Comparing version 6.22.0 to 7.0.0-alpha.1
@@ -35,3 +35,3 @@ "use strict"; | ||
return { | ||
inherits: require("babel-plugin-syntax-function-bind"), | ||
inherits: _babelPluginSyntaxFunctionBind2.default, | ||
@@ -61,2 +61,6 @@ visitor: { | ||
module.exports = exports["default"]; | ||
var _babelPluginSyntaxFunctionBind = require("babel-plugin-syntax-function-bind"); | ||
var _babelPluginSyntaxFunctionBind2 = _interopRequireDefault(_babelPluginSyntaxFunctionBind); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
{ | ||
"name": "babel-plugin-transform-function-bind", | ||
"version": "6.22.0", | ||
"version": "7.0.0-alpha.1", | ||
"description": "Compile function bind operator to ES5", | ||
@@ -12,8 +12,7 @@ "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-bind", | ||
"dependencies": { | ||
"babel-plugin-syntax-function-bind": "^6.8.0", | ||
"babel-runtime": "^6.22.0" | ||
"babel-plugin-syntax-function-bind": "7.0.0-alpha.1" | ||
}, | ||
"devDependencies": { | ||
"babel-helper-plugin-test-runner": "^6.22.0" | ||
"babel-helper-plugin-test-runner": "7.0.0-alpha.1" | ||
} | ||
} |
@@ -21,3 +21,2 @@ # babel-plugin-transform-function-bind | ||
[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) | ||
@@ -47,3 +46,2 @@ ## Example | ||
[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') | ||
@@ -64,3 +62,2 @@ ### Using with `document.querySelectorAll` | ||
[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) | ||
@@ -67,0 +64,0 @@ `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: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1
48
4804
2
118
+ Addedbabel-plugin-syntax-function-bind@7.0.0-alpha.1(transitive)
- Removedbabel-runtime@^6.22.0
- Removedbabel-plugin-syntax-function-bind@6.13.0(transitive)
- Removedbabel-runtime@6.26.0(transitive)
- Removedcore-js@2.6.12(transitive)
- Removedregenerator-runtime@0.11.1(transitive)