UNPKG

type2docfx

Version:

A tool to convert json format output from TypeDoc to universal reference model for DocFx to consume.

29 lines (24 loc) 1.16 kB
module.exports = function nodeFetchCookieDecorator (nodeFetch, jar) { var fetchCookie = require('./')(nodeFetch, jar) return function nodeFetchCookie (url, userOptions) { const opts = Object.assign({}, userOptions, { redirect: 'manual' }) // Forward identical options to wrapped node-fetch but tell to not handle redirection. return fetchCookie(url, opts) .then(res => { var isRedirect = (res.status === 303 || ((res.status === 301 || res.status === 302))) // Interpret the proprietary "redirect" option in the same way that node-fetch does. if (isRedirect && userOptions.redirect !== 'manual' && userOptions.follow !== 0) { var optsForGet = Object.assign({}, { method: 'GET', body: null, // Since the "follow" flag is not relevant for node-fetch in this case, // we'll hijack it for our internal bookkeeping. follow: userOptions.follow !== undefined ? userOptions.follow - 1 : undefined }) return nodeFetchCookie(res.headers.get('location'), optsForGet) } else { return res } }) } }