Max Graey
Max Graey
```js async function compile() { const response = await fetch('module.wasm'); const buffer = await response.arrayBuffer(); const module = await WebAssembly.compile(buffer); return module; } function getInstanceSync(module, importObject = {}) { return...
the most useful 4th case could be solved [by this suggestion](https://github.com/tc39/proposal-array-grouping/issues/9)
If it was decided to use `filterReject`, why not simplify to a short name `reject` similar to lodash?
> your emulation doesn’t sort the object keys, btw This is another reason that it would be nice to have a correct method. Returning a tuple in combination with a...
> I believe many languages do it differently. That's doesn't matter. I'm just demonstrating ergonomics
> I believe many languages do it differently. Btw I'm not sure about this. Here Scala example: ```scala val x = List(15, 10, 5, 8, 20, 12) val (a, b)...
Another argument for addision `partition` method is that runtimes can be much more efficient with it, since the result is always a tuple of two elements unlike `groupBy` which return...
It is also sometimes very convenient when the partitioned/splitted result provides an array instead entries. Splitting in two groups and get middle (first, last, whatever) element for each group: ```ts...
> Also I feel like this is a more substantial breaking change an have no idea when it occured between v99.0.0 and v109.0.0... really I feel like this semver sysytem...
> the native's version is not v109.0.0 it's version_109 That's right. They have the same major versions. I don't see any inconsistency here