Added PornCZ.

This commit is contained in:
DebaucheryLibrarian
2020-07-22 04:12:20 +02:00
parent 9d89a38490
commit 46c6c4dd21
125 changed files with 462 additions and 7 deletions

View File

@@ -112,6 +112,15 @@ async function get(url, headers, options) {
});
}
async function head(url, headers, options) {
return queue.push(options?.queueMethod || defaultQueueMethod, {
method: 'HEAD',
url,
headers,
options,
});
}
async function post(url, body, headers, options) {
return queue.push(options?.queueMethod || defaultQueueMethod, {
method: 'POST',
@@ -125,4 +134,5 @@ async function post(url, body, headers, options) {
module.exports = {
get,
post,
head,
};