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
A pure function is a function where the return value is only determined by its input values, without observable side effects
Existing plugins will enforce a purely functional style within a function (e.g. by disallowing ExpressionStatements), but we really only care about unwanted closures (i.e. anything other than referencing const primitive values).
The text was updated successfully, but these errors were encountered:
Based on this definition:
Existing plugins will enforce a purely functional style within a function (e.g. by disallowing
ExpressionStatements
), but we really only care about unwanted closures (i.e. anything other than referencing const primitive values).The text was updated successfully, but these errors were encountered: