mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
function Caseless (dict) {
|
|
this.dict = dict || {}
|
|
}
|
|
Caseless.prototype.set = function (name, value, clobber) {
|
|
if (typeof name === 'object') {
|
|
for (var i in name) {
|
|
this.set(i, name[i], value)
|
|
}
|
|
} else {
|
|
if (typeof clobber === 'undefined') clobber = true
|
|
var has = this.has(name)
|
|
|
|
if (!clobber && has) this.dict[has] = this.dict[has] + ',' + value
|
|
else this.dict[has || name] = value
|
|
return has
|
|
}
|
|
}
|
|
Caseless.prototype.has = function (name) {
|
|
var keys = Object.keys(this.dict)
|
|
, name = name.toLowerCase()
|
|
;
|
|
for (var i=0;i<keys.length;i++) {
|
|
if (keys[i].toLowerCase() === name) return keys[i]
|
|
}
|
|
return false
|
|
}
|
|
Caseless.prototype.get = function (name) {
|
|
name = name.toLowerCase()
|
|
var result, _key
|
|
var headers = this.dict
|
|
Object.keys(headers).forEach(function (key) {
|
|
_key = key.toLowerCase()
|
|
if (name === _key) result = headers[key]
|
|
})
|
|
return result
|
|
}
|
|
Caseless.prototype.swap = function (name) {
|
|
var has = this.has(name)
|
|
if (has === name) return
|
|
if (!has) throw new Error('There is no header than matches "'+name+'"')
|
|
this.dict[name] = this.dict[has]
|
|
delete this.dict[has]
|
|
}
|
|
Caseless.prototype.del = function (name) {
|
|
var has = this.has(name)
|
|
return delete this.dict[has || name]
|
|
}
|
|
|
|
module.exports = function (dict) {return new Caseless(dict)}
|
|
module.exports.httpify = function (resp, headers) {
|
|
var c = new Caseless(headers)
|
|
resp.setHeader = function (key, value, clobber) {
|
|
if (typeof value === 'undefined') return
|
|
return c.set(key, value, clobber)
|
|
}
|
|
resp.hasHeader = function (key) {
|
|
return c.has(key)
|
|
}
|
|
resp.getHeader = function (key) {
|
|
return c.get(key)
|
|
}
|
|
resp.removeHeader = function (key) {
|
|
return c.del(key)
|
|
}
|
|
resp.headers = c.dict
|
|
return c
|
|
}
|