Steve Van Opstal

Results 3 issues of Steve Van Opstal

In recent events the `SnakeCasePipe` is renamed to `UnderscorePipe` (https://github.com/a8m/ng-pipes/commit/a103dd8b3bd15a64aaa0850b23cbb1a6d1afc944). In my opinion the name `SnakeCasePipe` makes a lot of sense. @rafaelss95 apparently thinks `UnderscorePipe` to be more suitable. But...

``` const [number, setNumber] = useLocalStorage("number", Infinity); console.log(number); // null ``` Seems to be related to JSON.stringify. You can workaround this issue by not using Infinity but it would be...