You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3: export default (f: Function) => f.apply.bind(f);
^ call of method `bind`. Callable signature not found in
3: export default (f: Function) => f.apply.bind(f);
^ function type
Even though...
constfoo=()=>console.log('Works');constbar=f=>f.apply.bind(f);bar(foo)();// Works
The text was updated successfully, but these errors were encountered:
Hi there! I've been trying to get rid of a $FlowFixMe in our codebase and have isolated it down to this:
https://flow.org/try/#0PTAEAEDMBsHsHcBQiCmAPADrATgF1ACYqQCGArtPgBSQBcoAYmQHYDGuAlrMwJSgC8APlCQAdCQwZoAT1EAjDswI0eAbkRA
That is,
yields
Even though...
The text was updated successfully, but these errors were encountered: