Alexander von Weiss

Results 55 comments of Alexander von Weiss

If you add this to your `karma.conf.js`: ``` javascript files: [ {pattern: 'js/**/*.js', included: false} ], ``` It works for me in WebStorm. I guess the WebStorm karma plugin does...

https://github.com/dibari/angular-ellipsis/pull/42 should have fixed this issue.

https://github.com/dibari/angular-ellipsis/pull/42 should have fixed this issue.

Maybe you could pass templates and use `*ngTemplateOutlet` instead. It's a bit more predictable. This is a pretty good talk about it: https://www.youtube.com/watch?v=2SnVxPeJdwE

Or angular adds something like what twig does ```typescript {% let foo = foo$ | async %} {% let bar = bar$ | async %} ... ```

Reproduction in angular 12.1 https://github.com/sod/ng-strict-issue1 / https://github.com/sod/ng-strict-issue1/blob/master/src/app/app.component.ts Right now as soon as you use the operator in the template, angular forces you to use it everywhere in that statement, even...

I like that it just assumes by default that it may be undefined. But [in a case like](http://www.typescriptlang.org/play/index.html#src=type%20Key%20%3D%20'foo'%20%7C%20'bar'%3B%0D%0A%0D%0Aconst%20map%20%3D%20new%20Map%3CKey%2C%20number%3E(%5B%0D%0A%20%20%20%20%5B'foo'%2C%201%5D%2C%0D%0A%20%20%20%20%5B'bar'%2C%202%5D%2C%0D%0A%5D)%3B%0D%0A%0D%0Amap.get('foo').toExponential()%3B): ```typescript type Key = 'foo' | 'bar'; const map = new Map([...

Wrong placing of the `!`. If you want to prune the undefined, you have to `!` the return value: `const value = m.get('a')!`

The issue is this line https://github.com/glidejs/glide/blob/master/src/components/breakpoints.js#L88 The Breakpoints extension pulls in the settings object reference once and works with that on resize. So the resize listener just overwrites everything with...

There are many things we could write plugins for 1. a plugin that handles imports to images. Like: ``` import myAssetWebp from 'images/my/asset.webp' // bundler throws if this file does...