Added PornCZ.
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user