* Fixed typos in the README
* feat(feature-requests): Add support for Hindi language
This commit adds a feature request for supporting the Hindi language, which would enhance accessibility for Hindi-speaking users. It includes translation, language selection options, and testing for a seamless user experience.
Closes#1054
* fix(docs): Correct grammar errors in README.md
Addressed grammar mistakes that were identified in the previous pull request. This commit ensures the README.md is free from errors and provides clear and accurate information.
Closes#1053
Before, it was impossible to act on changes to the text content as it
is not part of `vnode.data`, this is now fixed. To not break modules
that (technically incorrectly) assume that `vnode.data` is always
defined, empty objects are assigned.
This ensures that SVG namespaces are correct on children and when copying a thunk.
ISSUES CLOSED: #388#867
Co-authored-by: macarc <pipescore@outlook.com>
Co-authored-by: Jan van Brügge <supermanitu@gmail.com>
The benchmark code was not yet updated to version 3 of snabbdom and
thus cannot be run at the moment. Further, it depends on faker, which is
not available any more. So for now, the benchmark code and all its
dependencies have been removed. In the future we should again add
benchmarks and can reference this commit for some code.
This functionality was always unnecessary, because the example could be done with a curried function for example:
```js
function makeEventListener(number) {
return (event) => console.log("button " + number + " was clicked!");
}
```
ISSUES FIXED: #988