Closed szmarczak closed 5 years ago
See https://github.com/sindresorhus/got/issues/874
Just need to replace every .once with .prependOnceListener and do some basic test:
.once
.prependOnceListener
test('prepends once listener', t => { ... const timings = timer(request); request.once('response' => { t.true(typeof timings.response === 'number'); }); ... });
See https://github.com/sindresorhus/got/issues/874
Just need to replace every
.once
with.prependOnceListener
and do some basic test: