We preferred to think that String in JavaScript is an array of characters. (more…)
Read more »
string-hash-64 - Fast string hashing function for Node.JS, generates 64 bit hashes. (more…)
Read more »
I recently overhauled a JS parsing library to delegate to the Rust implementation via Wasm. The result to users is seamless as the small Wasm bundled is inlined in the library as base64 encoded. Along the way, I saw that parsing can be much faster than ob... (more…)
Read more »
A map is one of the most frequently used data structures in daily programming. It keeps key-value pairs that can easily be accessed by their keys. In Java, it is pretty obvious to use a HashMap for… (more…)
Read more »