initial commit
[squeep-indieauth-helper] / lib / enum.js
diff --git a/lib/enum.js b/lib/enum.js
new file mode 100644 (file)
index 0000000..ef5c0ff
--- /dev/null
@@ -0,0 +1,19 @@
+'use strict';
+
+module.exports = {
+  Specification: 'living-standard-20201126',
+
+  ContentType: {
+    Any: '*/*',
+    ApplicationForm: 'application/x-www-form-urlencoded',
+    ApplicationJson: 'application/json',
+    ApplicationOctetStream: 'application/octet-stream',
+  },
+
+  Header: {
+    Accept: 'Accept',
+    ContentType: 'Content-Type',
+    Link: 'Link',
+    UserAgent: 'User-Agent',
+  },
+};
\ No newline at end of file