stropho

Results 14 comments of stropho

The way you describe cWRP sounds like it could be replaced with `getDerivedStateFromProps` . It is a static function, so there is no access to `this`. That could make the...

So I did some digging, unfortunately not found a clean solution, but at least I can share what I've found. The `TruncateMarkup` component works in more or less those phases:...

I am not the maintainer but I've contributed to this repo a few times. IMHO if the new functional component works the same - accepting same props, displays the same...

I have a similar problem - but with exports ... meaning all the types are in 1 file ```js // .d.ts type ToString = {toString: () => string} export {ToString}...

Could this be possibly merged or is there any problem with that?

Hmm wondering what is this waiting for :) Anyway, if I was the maintainer, I would appreciate keeping the test coverage on the same level or higher. A nice non-blocking...

Hey @aaronadamsCA , how are you? What's the status? As this feature is very useful to me right now, I'm willing to help :) If you give me access to...

And now, finally publishing it after a while would be great :)

Thx for the note. I wouldn't notice the change on master after quite a long time :)

a workaround for me was to create my own node executable. Something like ``` #!/usr/bin/env node const foo = require('my-favourite-lib') // get something from `process.argv` // do any operations you...