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
String.fromCodePoints is documented here: https://www.assemblyscript.org/stdlib/string.html#static-members
String.fromCodePoints
It is defined in the portable std here
assemblyscript/std/portable/index.js
Line 241 in 64cba2e
However it is missing from the AssemblyScript String class here:
String
assemblyscript/std/assembly/string.ts
Line 10 in 64cba2e
compile the following code with asc
const foo = String.fromCodePoints([102, 111, 111]);
v0.27.26
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug description
String.fromCodePoints
is documented here: https://www.assemblyscript.org/stdlib/string.html#static-membersIt is defined in the portable std here
assemblyscript/std/portable/index.js
Line 241 in 64cba2e
However it is missing from the AssemblyScript
String
class here:assemblyscript/std/assembly/string.ts
Line 10 in 64cba2e
Steps to reproduce
compile the following code with asc
AssemblyScript version
v0.27.26
The text was updated successfully, but these errors were encountered: