initial commit
[squeep-indieauth-helper] / lib / enum.js
1 'use strict';
2
3 module.exports = {
4 Specification: 'living-standard-20201126',
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 ContentType: 'Content-Type',
16 Link: 'Link',
17 UserAgent: 'User-Agent',
18 },
19 };