rubico icon indicating copy to clipboard operation
rubico copied to clipboard

[a]synchronous functional programming

Results 74 rubico issues
Sort by recently updated
recently updated
newest added

#215 and eager API for isIn

```coffeescript map.keys(mapper (key string)=>Promise|string)(object Object) -> mappedKeys Promise|Object ``` Apply a mapper concurrently to an object's keys, returning an object with mapped keys. ```javascript console.log( map.keys(key => `#${key}`)({ a: 1,...

enhancement

this way we can share them in dist test and not have to duplicate

stability

``` flatMap.series flatMap.pool transform.parallel transform.pool transform.while reduce.parallel reduce.pool reduce.while pipe.chain ``` Your suggestions are welcome!

`reduce`, when passed a single non-function argument before the reducer function, treats that argument as the value to be reduced. ```js const numbers = [1, 2, 3, 4, 5] const...

enhancement

`filter`, when passed a single argument before the predicate function, treats that argument as the value to be filtered. ```js const numbers = [1, 2, 3] const odds = filter(numbers,...

enhancement

`map`, when passed a single argument before the mapper function, treats that argument as the value to be mapped. ```js const myArray = [1, 2, 3] const mappedArray = map(myArray,...

enhancement

counterpart to includes ```js const myArray = [1, 2, 3] isIn(myArray)(1) // true isIn(myArray)(5) // false ``` should work for objects, maps, and sets as well ```js const myObject =...

enhancement

Hi, I cant seem to import rubico using Typescript. Is there Typescript definition types?