984e19bbf541500504e407a9e25a8d5184b88ac9
[squeep-indieauth-helper] / lib / enum.js
1 'use strict';
2
3 module.exports = {
4 Specification: 'living-standard-20220212',
5
6 ContentType: {
7 Any: '*/*',
8 ApplicationForm: 'application/x-www-form-urlencoded',
9 ApplicationJson: 'application/json',
10 ApplicationOctetStream: 'application/octet-stream',
11 },
12
13 Header: {
14 Accept: 'Accept',
15 Authorization: 'Authorization',
16 ContentType: 'Content-Type',
17 Link: 'Link',
18 UserAgent: 'User-Agent',
19 WWWAuthenticate: 'WWW-Authenticate',
20 },
21 };