Sysmat

Results 95 comments of Sysmat

Example: `abc.efg.g1h.` will always fail, current `options` don't provide this use case, but is valid ```javascript validator.isFQDN('abc.efg.g1h.', { allow_trailing_dot: true, allow_underscores: true, allow_numeric_tld: true}); // false but should be true...

- Same here - Is this lib using semantic versioning?

- for maven: ```xml io.github.resilience4j resilience4j-all 1.7.1 io.github.resilience4j resilience4j-retry 1.7.1 ```

- 1.7.x `artifactId:resilience4j-all` name is misleading, maybe better `artifactId:resilience4j-decoraters`

- "@picocss/pico": "^1.5.3" - data-placement="bottom" not working

@wenkm aha thx, sorry my mistake

Even if try directly subscribe, nothing happened, not even an error ```html rxjsWeb ``` ```typescript public rxjsWeb() { console.log('rxjsWeb'); fromNetwork() .pipe( first(), map(net => { console.log(`net=${net}`); return true; }) )...

If I try by native API it works in any browser ```typescript const conn = (navigator as any).connection; if (conn) { const connectionlist = ['slow-2g', '2g', '3g', '4g']; const effectiveType...

Here is demo * https://stackblitz.com/edit/angular-rxjs-web?file=src/app/hello.component.ts * https://angular-rxjs-web.stackblitz.io