code stringlengths 24 2.07M | docstring stringlengths 25 85.3k | func_name stringlengths 1 92 | language stringclasses 1
value | repo stringlengths 5 64 | path stringlengths 4 172 | url stringlengths 44 218 | license stringclasses 7
values |
|---|---|---|---|---|---|---|---|
set binaryType (type) {
webidl.brandCheck(this, WebSocket)
if (type !== 'blob' && type !== 'arraybuffer') {
this[kBinaryType] = 'blob'
} else {
this[kBinaryType] = type
}
} | @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol | binaryType | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
constructor () {
if (arguments[0] !== kConstruct) {
webidl.illegalConstructor()
}
this.#relevantRequestResponseList = arguments[1]
} | @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list
@type {requestResponseList} | constructor | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async match (request, options = {}) {
webidl.brandCheck(this, Cache)
webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.match' })
request = webidl.converters.RequestInfo(request)
options = webidl.converters.CacheQueryOptions(options)
const p = await this.matchAll(request, options)
if (... | @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list
@type {requestResponseList} | match | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async matchAll (request = undefined, options = {}) {
webidl.brandCheck(this, Cache)
if (request !== undefined) request = webidl.converters.RequestInfo(request)
options = webidl.converters.CacheQueryOptions(options)
// 1.
let r = null
// 2.
if (request !== undefined) {
if (request in... | @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list
@type {requestResponseList} | matchAll | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async keys (request = undefined, options = {}) {
webidl.brandCheck(this, Cache)
if (request !== undefined) request = webidl.converters.RequestInfo(request)
options = webidl.converters.CacheQueryOptions(options)
// 1.
let r = null
// 2.
if (request !== undefined) {
// 2.1
if (r... | @see https://w3c.github.io/ServiceWorker/#dom-cache-keys
@param {any} request
@param {import('../../types/cache').CacheQueryOptions} options
@returns {readonly Request[]} | keys | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
constructor () {
if (arguments[0] !== kConstruct) {
webidl.illegalConstructor()
}
} | @see https://w3c.github.io/ServiceWorker/#cache-storage-has
@param {string} cacheName
@returns {Promise<boolean>} | constructor | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async match (request, options = {}) {
webidl.brandCheck(this, CacheStorage)
webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.match' })
request = webidl.converters.RequestInfo(request)
options = webidl.converters.MultiCacheQueryOptions(options)
// 1.
if (options.cacheName != nul... | @see https://w3c.github.io/ServiceWorker/#cache-storage-has
@param {string} cacheName
@returns {Promise<boolean>} | match | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async has (cacheName) {
webidl.brandCheck(this, CacheStorage)
webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.has' })
cacheName = webidl.converters.DOMString(cacheName)
// 2.1.1
// 2.2
return this.#caches.has(cacheName)
} | @see https://w3c.github.io/ServiceWorker/#cache-storage-delete
@param {string} cacheName
@returns {Promise<boolean>} | has | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async open (cacheName) {
webidl.brandCheck(this, CacheStorage)
webidl.argumentLengthCheck(arguments, 1, { header: 'CacheStorage.open' })
cacheName = webidl.converters.DOMString(cacheName)
// 2.1
if (this.#caches.has(cacheName)) {
// await caches.open('v1') !== await caches.open('v1')
... | @see https://w3c.github.io/ServiceWorker/#cache-storage-keys
@returns {string[]} | open | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async keys () {
webidl.brandCheck(this, CacheStorage)
// 2.1
const keys = this.#caches.keys()
// 2.2
return [...keys]
} | @see https://url.spec.whatwg.org/#concept-url-equals
@param {URL} A
@param {URL} B
@param {boolean | undefined} excludeFragment
@returns {boolean} | keys | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
constructor (url, {
interceptors,
maxHeaderSize,
headersTimeout,
socketTimeout,
requestTimeout,
connectTimeout,
bodyTimeout,
idleTimeout,
keepAlive,
keepAliveTimeout,
maxKeepAliveTimeout,
keepAliveMaxTimeout,
keepAliveTimeoutThreshold,
socketPath,
pipelining,
... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | constructor | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
get pipelining () {
return this[kPipelining]
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | pipelining | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
set pipelining (value) {
this[kPipelining] = value
resume(this, true)
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | pipelining | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
callback = () => {
if (this[kClosedResolve]) {
// TODO (fix): Should we error here with ClientDestroyedError?
this[kClosedResolve]()
this[kClosedResolve] = null
}
resolve()
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | callback | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
callback = () => {
if (this[kClosedResolve]) {
// TODO (fix): Should we error here with ClientDestroyedError?
this[kClosedResolve]()
this[kClosedResolve] = null
}
resolve()
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | callback | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onHttp2SessionError (err) {
assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID')
this[kSocket][kError] = err
onError(this[kClient], err)
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHttp2SessionError | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onHttp2FrameError (type, code, id) {
const err = new InformationalError(`HTTP/2: "frameError" received - type ${type}, code ${code}`)
if (id === 0) {
this[kSocket][kError] = err
onError(this[kClient], err)
}
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHttp2FrameError | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onHttp2SessionEnd () {
util.destroy(this, new SocketError('other side closed'))
util.destroy(this[kSocket], new SocketError('other side closed'))
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHttp2SessionEnd | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onHTTP2GoAway (code) {
const client = this[kClient]
const err = new InformationalError(`HTTP/2: "GOAWAY" frame received with code ${code}`)
client[kSocket] = null
client[kHTTP2Session] = null
if (client.destroyed) {
assert(this[kPending] === 0)
// Fail entire queue.
const requests = cli... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHTTP2GoAway | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async function lazyllhttp () {
const llhttpWasmData = process.env.JEST_WORKER_ID ? __nccwpck_require__(2745) : undefined
let mod
try {
mod = await WebAssembly.compile(Buffer.from(__nccwpck_require__(3643), 'base64'))
} catch (e) {
/* istanbul ignore next */
// We could check if the error was cause... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | lazyllhttp | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
constructor (client, socket, { exports }) {
assert(Number.isFinite(client[kMaxHeadersSize]) && client[kMaxHeadersSize] > 0)
this.llhttp = exports
this.ptr = this.llhttp.llhttp_alloc(constants.TYPE.RESPONSE)
this.client = client
this.socket = socket
this.timeout = null
this.timeoutValue = nu... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | constructor | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
setTimeout (value, type) {
this.timeoutType = type
if (value !== this.timeoutValue) {
timers.clearTimeout(this.timeout)
if (value) {
this.timeout = timers.setTimeout(onParserTimeout, value, this)
// istanbul ignore else: only for jest
if (this.timeout.unref) {
this.... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | setTimeout | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
resume () {
if (this.socket.destroyed || !this.paused) {
return
}
assert(this.ptr != null)
assert(currentParser == null)
this.llhttp.llhttp_resume(this.ptr)
assert(this.timeoutType === TIMEOUT_BODY)
if (this.timeout) {
// istanbul ignore else: only for jest
if (this.time... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | resume | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
readMore () {
while (!this.paused && this.ptr) {
const chunk = this.socket.read()
if (chunk === null) {
break
}
this.execute(chunk)
}
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | readMore | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
execute (data) {
assert(this.ptr != null)
assert(currentParser == null)
assert(!this.paused)
const { socket, llhttp } = this
if (data.length > currentBufferSize) {
if (currentBufferPtr) {
llhttp.free(currentBufferPtr)
}
currentBufferSize = Math.ceil(data.length / 4096) * ... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | execute | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
destroy () {
assert(this.ptr != null)
assert(currentParser == null)
this.llhttp.llhttp_free(this.ptr)
this.ptr = null
timers.clearTimeout(this.timeout)
this.timeout = null
this.timeoutValue = null
this.timeoutType = null
this.paused = false
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | destroy | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onStatus (buf) {
this.statusText = buf.toString()
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onStatus | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onMessageBegin () {
const { socket, client } = this
/* istanbul ignore next: difficult to make a test case for */
if (socket.destroyed) {
return -1
}
const request = client[kQueue][client[kRunningIdx]]
if (!request) {
return -1
}
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onMessageBegin | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onHeaderField (buf) {
const len = this.headers.length
if ((len & 1) === 0) {
this.headers.push(buf)
} else {
this.headers[len - 1] = Buffer.concat([this.headers[len - 1], buf])
}
this.trackHeader(buf.length)
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHeaderField | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onHeaderValue (buf) {
let len = this.headers.length
if ((len & 1) === 1) {
this.headers.push(buf)
len += 1
} else {
this.headers[len - 1] = Buffer.concat([this.headers[len - 1], buf])
}
const key = this.headers[len - 2]
if (key.length === 10 && key.toString().toLowerCase() ==... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHeaderValue | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
trackHeader (len) {
this.headersSize += len
if (this.headersSize >= this.headersMaxSize) {
util.destroy(this.socket, new HeadersOverflowError())
}
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | trackHeader | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onUpgrade (head) {
const { upgrade, client, socket, headers, statusCode } = this
assert(upgrade)
const request = client[kQueue][client[kRunningIdx]]
assert(request)
assert(!socket.destroyed)
assert(socket === client[kSocket])
assert(!this.paused)
assert(request.upgrade || request.meth... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onUpgrade | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onHeadersComplete (statusCode, upgrade, shouldKeepAlive) {
const { client, socket, headers, statusText } = this
/* istanbul ignore next: difficult to make a test case for */
if (socket.destroyed) {
return -1
}
const request = client[kQueue][client[kRunningIdx]]
/* istanbul ignore next: ... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onHeadersComplete | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onBody (buf) {
const { client, socket, statusCode, maxResponseSize } = this
if (socket.destroyed) {
return -1
}
const request = client[kQueue][client[kRunningIdx]]
assert(request)
assert.strictEqual(this.timeoutType, TIMEOUT_BODY)
if (this.timeout) {
// istanbul ignore else: o... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onBody | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onMessageComplete () {
const { client, socket, statusCode, upgrade, headers, contentLength, bytesRead, shouldKeepAlive } = this
if (socket.destroyed && (!statusCode || shouldKeepAlive)) {
return -1
}
if (upgrade) {
return
}
const request = client[kQueue][client[kRunningIdx]]
a... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onMessageComplete | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onParserTimeout (parser) {
const { socket, timeoutType, client } = parser
/* istanbul ignore else */
if (timeoutType === TIMEOUT_HEADERS) {
if (!socket[kWriting] || socket.writableNeedDrain || client[kRunning] > 1) {
assert(!parser.paused, 'cannot be paused while waiting for headers')
ut... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onParserTimeout | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onSocketReadable () {
const { [kParser]: parser } = this
if (parser) {
parser.readMore()
}
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onSocketReadable | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onSocketError (err) {
const { [kClient]: client, [kParser]: parser } = this
assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID')
if (client[kHTTPConnVersion] !== 'h2') {
// On Mac OS, we get an ECONNRESET even if there is a full body to be forwarded
// to the user.
if (err.code === 'ECONNRES... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onSocketError | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onError (client, err) {
if (
client[kRunning] === 0 &&
err.code !== 'UND_ERR_INFO' &&
err.code !== 'UND_ERR_SOCKET'
) {
// Error is not caused by running request and not a recoverable
// socket error.
assert(client[kPendingIdx] === client[kRunningIdx])
const requests = client[... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onError | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onSocketEnd () {
const { [kParser]: parser, [kClient]: client } = this
if (client[kHTTPConnVersion] !== 'h2') {
if (parser.statusCode && !parser.shouldKeepAlive) {
// We treat all incoming data so far as a valid response.
parser.onMessageComplete()
return
}
}
util.destroy(th... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onSocketEnd | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function onSocketClose () {
const { [kClient]: client, [kParser]: parser } = this
if (client[kHTTPConnVersion] === 'h1' && parser) {
if (!this[kError] && parser.statusCode && !parser.shouldKeepAlive) {
// We treat all incoming data so far as a valid response.
parser.onMessageComplete()
}
t... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | onSocketClose | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async function connect (client) {
assert(!client[kConnecting])
assert(!client[kSocket])
let { host, hostname, protocol, port } = client[kUrl]
// Resolve ipv6
if (hostname[0] === '[') {
const idx = hostname.indexOf(']')
assert(idx !== -1)
const ip = hostname.substring(1, idx)
assert(net.isI... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | connect | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function emitDrain (client) {
client[kNeedDrain] = 0
client.emit('drain', client[kUrl], [client])
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | emitDrain | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function resume (client, sync) {
if (client[kResuming] === 2) {
return
}
client[kResuming] = 2
_resume(client, sync)
client[kResuming] = 0
if (client[kRunningIdx] > 256) {
client[kQueue].splice(0, client[kRunningIdx])
client[kPendingIdx] -= client[kRunningIdx]
client[kRunningIdx] = 0
}
... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | resume | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function _resume (client, sync) {
while (true) {
if (client.destroyed) {
assert(client[kPending] === 0)
return
}
if (client[kClosedResolve] && !client[kSize]) {
client[kClosedResolve]()
client[kClosedResolve] = null
return
}
const socket = client[kSocket]
if (s... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | _resume | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function shouldSendContentLength (method) {
return method !== 'GET' && method !== 'HEAD' && method !== 'OPTIONS' && method !== 'TRACE' && method !== 'CONNECT'
} | @param {string|URL} url
@param {import('../types/client').Client.Options} options | shouldSendContentLength | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function write (client, request) {
if (client[kHTTPConnVersion] === 'h2') {
writeH2(client, client[kHTTP2Session], request)
return
}
const { body, method, path, host, upgrade, headers, blocking, reset } = request
// https://tools.ietf.org/html/rfc7231#section-4.3.1
// https://tools.ietf.org/html/rfc... | @param {string|URL} url
@param {import('../types/client').Client.Options} options | write | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function deleteCookie (headers, name, attributes) {
webidl.argumentLengthCheck(arguments, 2, { header: 'deleteCookie' })
webidl.brandCheck(headers, Headers, { strict: false })
name = webidl.converters.DOMString(name)
attributes = webidl.converters.DeleteCookieAttributes(attributes)
// Matches behavior of
... | @param {Headers} headers
@param {Cookie} cookie
@returns {void} | deleteCookie | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function getSetCookies (headers) {
webidl.argumentLengthCheck(arguments, 1, { header: 'getSetCookies' })
webidl.brandCheck(headers, Headers, { strict: false })
const cookies = getHeadersList(headers).cookies
if (!cookies) {
return []
}
// In older versions of undici, cookies is a list of name:value.... | @param {Headers} headers
@param {Cookie} cookie
@returns {void} | getSetCookies | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function setCookie (headers, cookie) {
webidl.argumentLengthCheck(arguments, 2, { header: 'setCookie' })
webidl.brandCheck(headers, Headers, { strict: false })
cookie = webidl.converters.Cookie(cookie)
const str = stringify(cookie)
if (str) {
headers.append('Set-Cookie', stringify(cookie))
}
} | @param {Headers} headers
@param {Cookie} cookie
@returns {void} | setCookie | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function parseSetCookie (header) {
// 1. If the set-cookie-string contains a %x00-08 / %x0A-1F / %x7F
// character (CTL characters excluding HTAB): Abort these steps and
// ignore the set-cookie-string entirely.
if (isCTLExcludingHtab(header)) {
return null
}
let nameValuePair = ''
let unparsed... | @description Parses the field-value attributes of a set-cookie header string.
@see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4
@param {string} header
@returns if the header is invalid, null will be returned | parseSetCookie | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function parseUnparsedAttributes (unparsedAttributes, cookieAttributeList = {}) {
// 1. If the unparsed-attributes string is empty, skip the rest of
// these steps.
if (unparsedAttributes.length === 0) {
return cookieAttributeList
}
// 2. Discard the first character of the unparsed-attributes (which
... | Parses the remaining attributes of a set-cookie header
@see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4
@param {string} unparsedAttributes
@param {[Object.<string, unknown>]={}} cookieAttributeList | parseUnparsedAttributes | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isCTLExcludingHtab (value) {
if (value.length === 0) {
return false
}
for (const char of value) {
const code = char.charCodeAt(0)
if (
(code >= 0x00 || code <= 0x08) ||
(code >= 0x0A || code <= 0x1F) ||
code === 0x7F
) {
return false
}
}
} | CHAR = <any US-ASCII character (octets 0 - 127)>
token = 1*<any CHAR except CTLs or separators>
separators = "(" | ")" | "<" | ">" | "@"
| "," | ";" | ":" | "\" | <">
| "/" | "[" | "]" | "?" | "="
| "{" | "}" | SP | HT
@param {string} name | isCTLExcludingHtab | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function validateCookieName (name) {
for (const char of name) {
const code = char.charCodeAt(0)
if (
(code <= 0x20 || code > 0x7F) ||
char === '(' ||
char === ')' ||
char === '>' ||
char === '<' ||
char === '@' ||
char === ',' ||
char === ';' ||
char === ... | path-value = <any CHAR except CTLs or ";">
@param {string} path | validateCookieName | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function validateCookieValue (value) {
for (const char of value) {
const code = char.charCodeAt(0)
if (
code < 0x21 || // exclude CTLs (0-31)
code === 0x22 ||
code === 0x2C ||
code === 0x3B ||
code === 0x5C ||
code > 0x7E // non-ascii
) {
throw new Error('Invalid... | I have no idea why these values aren't allowed to be honest,
but Deno tests these. - Khafra
@param {string} domain | validateCookieValue | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function validateCookiePath (path) {
for (const char of path) {
const code = char.charCodeAt(0)
if (code < 0x21 || char === ';') {
throw new Error('Invalid cookie path')
}
}
} | I have no idea why these values aren't allowed to be honest,
but Deno tests these. - Khafra
@param {string} domain | validateCookiePath | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function validateCookieDomain (domain) {
if (
domain.startsWith('-') ||
domain.endsWith('.') ||
domain.endsWith('-')
) {
throw new Error('Invalid cookie domain')
}
} | I have no idea why these values aren't allowed to be honest,
but Deno tests these. - Khafra
@param {string} domain | validateCookieDomain | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function toIMFDate (date) {
if (typeof date === 'number') {
date = new Date(date)
}
const days = [
'Sun', 'Mon', 'Tue', 'Wed',
'Thu', 'Fri', 'Sat'
]
const months = [
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
]
const dayName = days[date.getUTC... | @see https://www.rfc-editor.org/rfc/rfc6265#section-4.1.1
@param {import('./index').Cookie} cookie | toIMFDate | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function validateCookieMaxAge (maxAge) {
if (maxAge < 0) {
throw new Error('Invalid cookie max-age')
}
} | @see https://www.rfc-editor.org/rfc/rfc6265#section-4.1.1
@param {import('./index').Cookie} cookie | validateCookieMaxAge | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function stringify (cookie) {
if (cookie.name.length === 0) {
return null
}
validateCookieName(cookie.name)
validateCookieValue(cookie.value)
const out = [`${cookie.name}=${cookie.value}`]
// https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-prefixes-00#section-3.1
// https://datatrac... | @see https://www.rfc-editor.org/rfc/rfc6265#section-4.1.1
@param {import('./index').Cookie} cookie | stringify | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
constructor (origin, {
path,
method,
body,
headers,
query,
idempotent,
blocking,
upgrade,
headersTimeout,
bodyTimeout,
reset,
throwOnError,
expectContinue
}, handler) {
if (typeof path !== 'string') {
throw new InvalidArgumentError('path must be a string')... | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | constructor | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onBodySent (chunk) {
if (this[kHandler].onBodySent) {
try {
return this[kHandler].onBodySent(chunk)
} catch (err) {
this.abort(err)
}
}
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onBodySent | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onRequestSent () {
if (channels.bodySent.hasSubscribers) {
channels.bodySent.publish({ request: this })
}
if (this[kHandler].onRequestSent) {
try {
return this[kHandler].onRequestSent()
} catch (err) {
this.abort(err)
}
}
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onRequestSent | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onConnect (abort) {
assert(!this.aborted)
assert(!this.completed)
if (this.error) {
abort(this.error)
} else {
this.abort = abort
return this[kHandler].onConnect(abort)
}
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onConnect | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onHeaders (statusCode, headers, resume, statusText) {
assert(!this.aborted)
assert(!this.completed)
if (channels.headers.hasSubscribers) {
channels.headers.publish({ request: this, response: { statusCode, headers, statusText } })
}
try {
return this[kHandler].onHeaders(statusCode, head... | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onHeaders | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onData (chunk) {
assert(!this.aborted)
assert(!this.completed)
try {
return this[kHandler].onData(chunk)
} catch (err) {
this.abort(err)
return false
}
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onData | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onUpgrade (statusCode, headers, socket) {
assert(!this.aborted)
assert(!this.completed)
return this[kHandler].onUpgrade(statusCode, headers, socket)
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onUpgrade | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onComplete (trailers) {
this.onFinally()
assert(!this.aborted)
this.completed = true
if (channels.trailers.hasSubscribers) {
channels.trailers.publish({ request: this, trailers })
}
try {
return this[kHandler].onComplete(trailers)
} catch (err) {
// TODO (fix): This migh... | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onComplete | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onError (error) {
this.onFinally()
if (channels.error.hasSubscribers) {
channels.error.publish({ request: this, error })
}
if (this.aborted) {
return
}
this.aborted = true
return this[kHandler].onError(error)
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onError | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
onFinally () {
if (this.errorHandler) {
this.body.off('error', this.errorHandler)
this.errorHandler = null
}
if (this.endHandler) {
this.body.off('end', this.endHandler)
this.endHandler = null
}
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | onFinally | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
addHeader (key, value) {
processHeader(this, key, value)
return this
} | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | addHeader | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function processHeaderValue (key, val, skipAppend) {
if (val && typeof val === 'object') {
throw new InvalidArgumentError(`invalid ${key} header`)
}
val = val != null ? `${val}` : ''
if (headerCharRegex.exec(val) !== null) {
throw new InvalidArgumentError(`invalid ${key} header`)
}
return skipApp... | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | processHeaderValue | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function processHeader (request, key, val, skipAppend = false) {
if (val && (typeof val === 'object' && !Array.isArray(val))) {
throw new InvalidArgumentError(`invalid ${key} header`)
} else if (val === undefined) {
return
}
if (
request.host === null &&
key.length === 4 &&
key.toLowerCase(... | Matches if val contains an invalid field-vchar
field-value = *( field-content / obs-fold )
field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
field-vchar = VCHAR / obs-text | processHeader | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isDestroyed (stream) {
return !stream || !!(stream.destroyed || stream[kDestroyed])
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | isDestroyed | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isReadableAborted (stream) {
const state = stream && stream._readableState
return isDestroyed(stream) && state && !state.endEmitted
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | isReadableAborted | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function destroy (stream, err) {
if (stream == null || !isStream(stream) || isDestroyed(stream)) {
return
}
if (typeof stream.destroy === 'function') {
if (Object.getPrototypeOf(stream).constructor === IncomingMessage) {
// See: https://github.com/nodejs/node/pull/38505/files
stream.socket = ... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | destroy | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function parseKeepAliveTimeout (val) {
const m = val.toString().match(KEEPALIVE_TIMEOUT_EXPR)
return m ? parseInt(m[1], 10) * 1000 : null
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | parseKeepAliveTimeout | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function headerNameToString (value) {
return headerNameLowerCasedRecord[value] || value.toLowerCase()
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | headerNameToString | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function parseHeaders (headers, obj = {}) {
// For H2 support
if (!Array.isArray(headers)) return headers
for (let i = 0; i < headers.length; i += 2) {
const key = headers[i].toString().toLowerCase()
let val = obj[key]
if (!val) {
if (Array.isArray(headers[i + 1])) {
obj[key] = headers... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | parseHeaders | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function parseRawHeaders (headers) {
const ret = []
let hasContentLength = false
let contentDispositionIdx = -1
for (let n = 0; n < headers.length; n += 2) {
const key = headers[n + 0].toString()
const val = headers[n + 1].toString('utf8')
if (key.length === 14 && (key === 'content-length' || key.... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | parseRawHeaders | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isBuffer (buffer) {
// See, https://github.com/mcollina/undici/pull/319
return buffer instanceof Uint8Array || Buffer.isBuffer(buffer)
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | isBuffer | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function validateHandler (handler, method, upgrade) {
if (!handler || typeof handler !== 'object') {
throw new InvalidArgumentError('handler must be an object')
}
if (typeof handler.onConnect !== 'function') {
throw new InvalidArgumentError('invalid onConnect method')
}
if (typeof handler.onError !=... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | validateHandler | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isDisturbed (body) {
return !!(body && (
stream.isDisturbed
? stream.isDisturbed(body) || body[kBodyUsed] // TODO (fix): Why is body[kBodyUsed] needed?
: body[kBodyUsed] ||
body.readableDidRead ||
(body._readableState && body._readableState.dataEmitted) ||
isReadableAb... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | isDisturbed | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isErrored (body) {
return !!(body && (
stream.isErrored
? stream.isErrored(body)
: /state: 'errored'/.test(nodeUtil.inspect(body)
)))
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | isErrored | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isReadable (body) {
return !!(body && (
stream.isReadable
? stream.isReadable(body)
: /state: 'readable'/.test(nodeUtil.inspect(body)
)))
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | isReadable | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function getSocketInfo (socket) {
return {
localAddress: socket.localAddress,
localPort: socket.localPort,
remoteAddress: socket.remoteAddress,
remotePort: socket.remotePort,
remoteFamily: socket.remoteFamily,
timeout: socket.timeout,
bytesWritten: socket.bytesWritten,
bytesRead: socke... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | getSocketInfo | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async function * convertIterableToBuffer (iterable) {
for await (const chunk of iterable) {
yield Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk)
}
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | convertIterableToBuffer | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function ReadableStreamFrom (iterable) {
if (!ReadableStream) {
ReadableStream = (__nccwpck_require__(3774).ReadableStream)
}
if (ReadableStream.from) {
return ReadableStream.from(convertIterableToBuffer(iterable))
}
let iterator
return new ReadableStream(
{
async start () {
iter... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | ReadableStreamFrom | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async start () {
iterator = iterable[Symbol.asyncIterator]()
} | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | start | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
async pull (controller) {
const { done, value } = await iterator.next()
if (done) {
queueMicrotask(() => {
controller.close()
})
} else {
const buf = Buffer.isBuffer(value) ? value : Buffer.from(value)
controller.enqueue(new Uint8Array(buf))
... | Retrieves a header name and returns its lowercase value.
@param {string | Buffer} value Header name
@returns {string} | pull | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function mixinBody (prototype) {
Object.assign(prototype.prototype, bodyMixinMethods(prototype))
} | @see https://fetch.spec.whatwg.org/#concept-body-consume-body
@param {Response|Request} object
@param {(value: unknown) => unknown} convertBytesToJSValue
@param {Response|Request} instance | mixinBody | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
successSteps = (data) => {
try {
promise.resolve(convertBytesToJSValue(data))
} catch (e) {
errorSteps(e)
}
} | @see https://encoding.spec.whatwg.org/#utf-8-decode
@param {Buffer} buffer | successSteps | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
successSteps = (data) => {
try {
promise.resolve(convertBytesToJSValue(data))
} catch (e) {
errorSteps(e)
}
} | @see https://encoding.spec.whatwg.org/#utf-8-decode
@param {Buffer} buffer | successSteps | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function URLSerializer (url, excludeFragment = false) {
if (!excludeFragment) {
return url.href
}
const href = url.href
const hashLength = url.hash.length
return hashLength === 0 ? href : href.substring(0, href.length - hashLength)
} | A faster collectASequenceOfCodePoints that only works when comparing a single character.
@param {string} char
@param {string} input
@param {{ position: number }} position | URLSerializer | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function collectAnHTTPQuotedString (input, position, extractValue) {
// 1. Let positionStart be position.
const positionStart = position.position
// 2. Let value be the empty string.
let value = ''
// 3. Assert: the code point at position within input
// is U+0022 (").
assert(input[position.position] ==... | @param {string} input
@param {{ position: number }} position
@param {boolean?} extractValue | collectAnHTTPQuotedString | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
entries () {
webidl.brandCheck(this, FormData)
return makeIterator(
() => this[kState].map(pair => [pair.name, pair.value]),
'FormData',
'key+value'
)
} | @param {(value: string, key: string, self: FormData) => void} callbackFn
@param {unknown} thisArg | entries | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
keys () {
webidl.brandCheck(this, FormData)
return makeIterator(
() => this[kState].map(pair => [pair.name, pair.value]),
'FormData',
'key'
)
} | @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#create-an-entry
@param {string} name
@param {string|Blob} value
@param {?string} filename
@returns | keys | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
values () {
webidl.brandCheck(this, FormData)
return makeIterator(
() => this[kState].map(pair => [pair.name, pair.value]),
'FormData',
'value'
)
} | @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#create-an-entry
@param {string} name
@param {string|Blob} value
@param {?string} filename
@returns | values | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
forEach (callbackFn, thisArg = globalThis) {
webidl.brandCheck(this, FormData)
webidl.argumentLengthCheck(arguments, 1, { header: 'FormData.forEach' })
if (typeof callbackFn !== 'function') {
throw new TypeError(
"Failed to execute 'forEach' on 'FormData': parameter 1 is not of type 'Functio... | @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#create-an-entry
@param {string} name
@param {string|Blob} value
@param {?string} filename
@returns | forEach | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
function isHTTPWhiteSpaceCharCode (code) {
return code === 0x00a || code === 0x00d || code === 0x009 || code === 0x020
} | @see https://fetch.spec.whatwg.org/#concept-header-value-normalize
@param {string} potentialValue | isHTTPWhiteSpaceCharCode | javascript | vercel/next.js | .github/actions/next-integration-stat/dist/index.js | https://github.com/vercel/next.js/blob/master/.github/actions/next-integration-stat/dist/index.js | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.