eslint-plugin-prefer-bind-operator
0.0.4 • Public • Published eslint-plugin-prefer-bind-operator 
Suggest using the bind operator over Function methods or Reflect.apply.
Warns for the following:
var foo = bar.bind();
foo.call();
foo.apply();
Reflect.apply(foo);
Usage
npm i --save-dev eslint-plugin-prefer-bind-operator
{
"plugins": [
"prefer-bind-operator"
],
"rules": {
"prefer-bind-operator/prefer-bind-operator": 2
}
}
Package Sidebar
Install
npm i eslint-plugin-prefer-bind-operator
Weekly Downloads