sobstel
sobstel
No, never considered it for my use case to be honest. Actually I don't feel strong with `pcntl` extension at all and I'm not even sure if it would be...
I'm not going consider it until it really becomes a standard (that's why I assigned it to hypothetical 2.0-dev, which means it might never happen actually). You can cache NULLs...
I wonder how much of these really need to be added. I personally think 1-liners should be rather documented (in mapping?) and not implemented. Samples: * `includes` -> `!!find` *...
> Could add something like this to mapping.md for one-liners? +1 from me. I think that it's better to promote best practises rather making remeda overly bloated. If you start...
I needed this for my pet project and I've pushed @jordenchang55 idea a bit further. It cannot really be done inside of `componentWillUnmount` but you can make a wrapper, which...
No, sorry, no plan to work on this any time soon. Pull requests are welcome though. You could also try simple alternative using hooks: https://github.com/oblador/react-native-animatable/issues/132#issuecomment-786870602
> Thanks @sobstel ! Can you squash your commits into a single commit? Done now. Thanks for all your assistance @p8.
I found a workaround [in actions/setup-node repo](https://github.com/actions/setup-node/issues/32#issuecomment-525791142). ``` - run: echo "::set-output name=RUBY_VERSION::$(cat .ruby-version)" id: rbenv - uses: actions/setup-ruby@v1 with: ruby-version: "${{ steps.rbenv.outputs.RUBY_VERSION }}" ```