force-bind
v0.0.2
Published
Forcefully bind arrow functions :)
Readme
force-bind
Do not use this library it was made as a joke
import { forceBind } from "force-bind";
const arrowFn = (a) => a + this.b;
const thisCtx = {
b: 2,
};
const boundArrowFn = forceBind(arrowFn, thisCtx);
boundArrowFn(1); // returns 3