Skip to content

Commit 24ccf0e

Browse files
committed
Added some more emojis
1 parent 84228a6 commit 24ccf0e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Thus, this library was made to help AssemblyScript/JavaScript users build awesom
212212

213213
## Performance
214214

215-
**TL;DR** This library should be fast, but depending on your project you may want some more careful consideration.
215+
**TL;DR** This library should be fast, but depending on your project you may want some more careful consideration. 🤔
216216

217217
as-bind does all of it's data passing at runtime. Meaning this will be slower than a code generated bindings generator, such as something like [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen). This is because, as-bind needs to cycle through every supported type on every paremeter or return value for each function, whenever the function is called. However, this is mitigated due to the Speculative execution that the library implements. Which. in this case it means, that the library by default will assume the type of value being passed to, or returned by a function will not change, and will only have to cycle through the params once, and then after that, it would be as fast as a code generated solution (in theory). This speculative execution can be turned off as specified in the Reference API.
218218

@@ -224,12 +224,14 @@ Eventually for the most performant option, we would want to do some JavaScript c
224224

225225
- The as-bind example is a Markdown Parser, in which as-bind takes in a string, passes it to a rough markdown parser / compiler written in AssemblyScript, and returns a string. [(Live Demo)](https://torch2424.github.io/as-bind/), [(Source Code)](https://github.com/torch2424/as-bind/tree/master/examples/markdown-parser)
226226

227+
_If you're project is using as-bind, and you would like to be featured here. Please open a README with links to your project, and if appropriate, explaining how as-bind is being used._ 😊
228+
227229
## Contributing
228230

229-
Contributions are definitely welcome! Feel free to open a PR for small fixes such as typos and things. Larger fixes, or new features should start out as an issue for discussion, in which then a PR should be made.
231+
Contributions are definitely welcome! Feel free to open a PR for small fixes such as typos and things. Larger fixes, or new features should start out as an issue for discussion, in which then a PR should be made. 🥳
230232

231233
This project will also adhere to the [AssemblyScript Code of Conduct](https://github.com/AssemblyScript/assemblyscript/blob/master/CODE_OF_CONDUCT.md).
232234

233235
## License
234236

235-
[MIT](https://oss.ninja/mit/torch2424).
237+
[MIT](https://oss.ninja/mit/torch2424). 📝

0 commit comments

Comments
 (0)