Oliver Joseph Ash
Oliver Joseph Ash
**IxJS version:** 2.3.4 Whilst `import { filter } from 'ix/iterable/pipe/filter';` works, `import { orderBy } from 'ix/iterable/pipe/orderby';` does not (module does not exist). I can see the lettable operator defined...
`interface`s are open to extension, whereas `type`s are not. In turn, this means that `interface`s do not have index signatures (unlike `type`s), which causes problems when you try to pass...
Given: ``` ; .editorconfig [**.foo] indent_style = tab ``` ``` ; project/.editorconfig [*] indent_style = space ``` When editing `project/bar.foo`, EditorConfig will apply `indent_style = space`. I want `indent_style =...
Imagine an app which has a dynamic list of counters. Users can add new counter components to a list. Each component has its own unique ID, state and reducers. How...
I am using HappyPack in combination with `ts-loader`. When I use webpack in watch mode, I noticed that webpack may produce different results between the first build and the second...
> When exporting a module using `export =`, TypeScript-specific `import module = require("module")` must be used to import the module. https://www.typescriptlang.org/docs/handbook/modules.html#export--and-import--require I'm confused about this statement, because `import * as...
https://github.com/evanw/esbuild/releases/tag/v0.14.51
When I try to import from `rxjs-etc/esm2015/operators/delayUntil`, I get an error: `Could not find a declaration file for module 'rxjs-etc/esm2015/operators/delayUntil'`. My workaround: ```ts // modules.d.ts declare module 'rxjs-etc/esm2015/operators/delayUntil' { export...
Are there any plans to add `fold` methods to these data structures, [like in Folktale](http://docs.folktalejs.org/en/latest/api/data/either/Either.html)?
Are there any plans to add a Validation type, like in Folktale? docs.folktalejs.org/en/latest/api/data/validation/Validation.html