We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Function
Function.prototype should be a callable property, currently flow complains that there is no "Callable signature".
Function.prototype
The following is valid javascript, thus should not have flow errors:
/* @flow */ const noop = Function.prototype; noop();
flow try
Activity