These days, there are loads of new one-liner JS methods and I think this repo needs a reason to be better than
window.nativeReverse = function(str) {
return (Array.from(str)).reverse().join("");
}
or
window.nativeReverse = function(str) {
return [...str].reverse().join("");
}
Yes. These are both one-liners that even follow the exact result of esrevers "foo 𝌆 bar" example. And esrever does "mañana mañana" wrong in Chrome or Firefox and Esrever also has the 'zero-width joiner' issue. Lets hope to see this issue fixed soon, or let esrever fade into the vastness of GitHub.
These days, there are loads of new one-liner JS methods and I think this repo needs a reason to be better than
or
Yes. These are both one-liners that even follow the exact result of esrevers "foo 𝌆 bar" example. And esrever does "mañana mañana" wrong in Chrome or Firefox and Esrever also has the 'zero-width joiner' issue. Lets hope to see this issue fixed soon, or let esrever fade into the vastness of GitHub.