peterreisz

Results 8 issues of peterreisz

```ts it('should not pass, but it is', () => { const foo$ = cold('#', {}, { foo: 1 }); const bar$ = cold('#', {}, { bar: 1 }); expect(foo$).toBeObservable(bar$); });...

This compiles, but it shouldn't: ```ts import { createSpyFromClass } from 'jest-auto-spies'; class Foo { bar(param: string): string { return '...'; } } const foo = createSpyFromClass(Foo); foo.bar.mockReturnValue(1); foo.bar.calledWith(1).mockReturnValue(1); ```...

### What is the problem this feature would solve? Deno has a different api for accessing the environment variables. There is no `process.env`. https://github.com/Effect-TS/effect/blob/ee7abb75d91d7c1c673935db254af0d4a6eb591d/src/internal/configProvider.ts#L106 ### What is the feature you...

enhancement

The FormControl can represents represents primitives (string, number) and [`Partial`](https://github.com/dirkluijk/ngx-typesafe-forms/blob/master/projects/ngx-typesafe-forms/src/lib/form-control.ts#L61) parameter messing up the typings. Also in the angular the `patchValue` implementation it just calls [`setValue`](https://github.com/angular/angular/blob/master/packages/forms/src/model.ts#L1118).

### What is the type of issue? Something else ### What is the issue? I'm not familiar with the just-the-docs or the jekyll doc generator, but running scripts from this...

documentation

Hi! In corp environments there is a central package registry/proxy and everything has to communicate to it. This proxy can be the only one to communicate to the outside world....

### What is the problem this feature would solve? Working with sum types (tagged unions) must be cheap to easily create models which prevents storing impossible states inside them. I...

enhancement

### What is the problem this feature would solve? Order.string is not locale aware, but String module has a locale compare function ### What is the feature you are proposing...

enhancement