Skip to content

Commit

Permalink
refactor: version cleanup (nodejs#2507)
Browse files Browse the repository at this point in the history
* refactor: version cleanup

* remove throwIfAborted
  • Loading branch information
tsctx authored and crysmags committed Feb 27, 2024
1 parent fb669e7 commit 3c3d5a7
Showing 1 changed file with 2 additions and 25 deletions.
27 changes: 2 additions & 25 deletions lib/core/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,19 +334,11 @@ function isDisturbed (body) {
}

function isErrored (body) {
return !!(body && (
stream.isErrored
? stream.isErrored(body)
: /state: 'errored'/.test(nodeUtil.inspect(body)
)))
return !!(body && stream.isErrored(body))
}

function isReadable (body) {
return !!(body && (
stream.isReadable
? stream.isReadable(body)
: /state: 'readable'/.test(nodeUtil.inspect(body)
)))
return !!(body && stream.isReadable(body))
}

function getSocketInfo (socket) {
Expand Down Expand Up @@ -411,20 +403,6 @@ function isFormDataLike (object) {
)
}

function throwIfAborted (signal) {
if (!signal) { return }
if (typeof signal.throwIfAborted === 'function') {
signal.throwIfAborted()
} else {
if (signal.aborted) {
// DOMException not available < v17.0.0
const err = new Error('The operation was aborted')
err.name = 'AbortError'
throw err
}
}
}

function addAbortListener (signal, listener) {
if ('addEventListener' in signal) {
signal.addEventListener('abort', listener, { once: true })
Expand Down Expand Up @@ -495,7 +473,6 @@ module.exports = {
getSocketInfo,
isFormDataLike,
buildURL,
throwIfAborted,
addAbortListener,
parseRangeHeader,
nodeMajor,
Expand Down

0 comments on commit 3c3d5a7

Please sign in to comment.