summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/agent-base/src/promisify.ts
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/agent-base/src/promisify.ts')
-rw-r--r--deps/npm/node_modules/agent-base/src/promisify.ts33
1 files changed, 33 insertions, 0 deletions
diff --git a/deps/npm/node_modules/agent-base/src/promisify.ts b/deps/npm/node_modules/agent-base/src/promisify.ts
new file mode 100644
index 0000000000..60cc662710
--- /dev/null
+++ b/deps/npm/node_modules/agent-base/src/promisify.ts
@@ -0,0 +1,33 @@
+import {
+ Agent,
+ ClientRequest,
+ RequestOptions,
+ AgentCallbackCallback,
+ AgentCallbackPromise,
+ AgentCallbackReturn
+} from './index';
+
+type LegacyCallback = (
+ req: ClientRequest,
+ opts: RequestOptions,
+ fn: AgentCallbackCallback
+) => void;
+
+export default function promisify(fn: LegacyCallback): AgentCallbackPromise {
+ return function(this: Agent, req: ClientRequest, opts: RequestOptions) {
+ return new Promise((resolve, reject) => {
+ fn.call(
+ this,
+ req,
+ opts,
+ (err: Error | null | undefined, rtn?: AgentCallbackReturn) => {
+ if (err) {
+ reject(err);
+ } else {
+ resolve(rtn);
+ }
+ }
+ );
+ });
+ };
+}