prochain
prochain copied to clipboard
Proxified Promise Chain in JavaScript
Results
1
prochain issues
Sort by
recently updated
recently updated
newest added
```javascript import { wrap } from 'prochain'; class A { /** sync method */ constructor(output) { this.output = output; } foo() { this.output += '1' return this } /** async...