We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Belt.List.map([1, 2, 3], a => a + 1)->(sums => Js.log(sums));
Formats into
Belt.List.map([1, 2, 3], a => a + 1)->sums => Js.log(sums);
Using this with the old fast-pipe syntax was fine before the update
Belt.List.map([1, 2, 3], a => a + 1) |. sums => Js.log(sums);
We used this pretty widely in our codebase without any problems
Which causes a syntax error. /cc @IwanKaramazow
The text was updated successfully, but these errors were encountered:
This has been fixed in #2111
Sorry, something went wrong.
Great, thanks! I tried looking through the issues but couldn't find any report.
it was #2118 for reference
No branches or pull requests
Formats into
Using this with the old fast-pipe syntax was fine before the update
We used this pretty widely in our codebase without any problems
Which causes a syntax error.
/cc @IwanKaramazow
The text was updated successfully, but these errors were encountered: