We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: 2.2.1
Code
const b = "foo" in <object> {};
Expected behavior: The in operator works
in
Actual behavior: A compile error is provided: The right-hand side of an 'in' expression must be of type 'any', an object type or a type parameter
The right-hand side of an 'in' expression must be of type 'any', an object type or a type parameter
The text was updated successfully, but these errors were encountered:
Allow the right-hand side of an 'in' expression to be of non-primitiv…
f761984
…e object type. Fixes microsoft#14269
39d1c8b
Just experienced the same issue:
export function isIterable<T>(value: object): value is Iterable<T> { return Symbol.iterator in value; }
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
TypeScript Version: 2.2.1
Code
Expected behavior:
The
in
operator worksActual behavior:
A compile error is provided:
The right-hand side of an 'in' expression must be of type 'any', an object type or a type parameter
The text was updated successfully, but these errors were encountered: