convert data-first functions into `::`-functions
npm install bind-first> convert data-first functions into ::-functions
This is a converter function to make a data-first function working with function-bind-operator
```
$ npm install --save bind-first
`js
import { bindFirst } from 'bind-first';
const data = { id: 1, name: 'foo' };
const hasPropFirst = (data, prop) => !!data[prop];
const hasThisFirst = hasPropFirst::bindFirst()
assert.strictEqual(data::hasThisFirst('name'), true);
assert.strictEqual(data::hasThisFirst('nope'), false);
`
:: huh?
----
If you’re wondering what the ::` thing means, you’d better read this excellent overview by @jussi-kalliokoski or have a look at the function bind syntax proposal.
MIT © Stoeffel