Richard Tong

Results 28 comments of Richard Tong

@firepol the reason you're getting `to is not a function` is because the `await-to-js` module only has the default export. in your case, if you want to keep using `require`,...

In rubico, `ReadableStream` is regarded as part of a Semigroup called `Stream` (for Node.js streams) in the context of extending a `WritableStream`. ```javascript /** * streamExtend(stream Writable)( * chunk string|Buffer|Uint8Array|any,...

To consider: auto internal promisify? Detection: binary function in callback position. Would be for functions like `pipe`

I'd like to stick to being dependency free.. for now. I would prefer having an own implementation to iterate on.

At the moment I'm against enforcing immutability in this library

Personal bump, doing this

I have a basic implementation here. ```javascript const log = (...args) => x => tap(() => console.log( ...args.map(arg => typeof arg === 'function' ? arg(x) : arg), ))(x) ``` I'd...

@lulldev examples are still welcome, thanks

all is a function name so it could be a bit misleading. Maybe rubico.full.js?

At last I've arrived at an answer on this. This is bad for performance, so I don't like this idea.