UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

20 lines (12 loc) • 305 B
'use strict'; var re = /(\S+)\s+(\S+)/; function parseAuthHeader(hdrValue) { if (typeof hdrValue !== 'string') { return null; } var matches = hdrValue.match(re); return matches && { scheme: matches[1], value: matches[2] }; } module.exports = { parse: parseAuthHeader };