@plugnet/util
Version:
A collection of useful utilities for @plugnet
45 lines (40 loc) • 1.47 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = promisify;
// Copyright 2017-2019 @polkadot/util authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
/* eslint-disable @typescript-eslint/no-explicit-any */
// this is horrible, but we want it typed, so... 6 params should be enough for everybody?
/**
* @name promisify
* @summary Wraps an async callback into a `Promise`
* @description
* Wraps the supplied async function `fn` that has a standard JS callback `(error: Error, result: any)` into a `Promise`, passing the supplied parameters. When `error` is set, the Promise is rejected, else the Promise resolves with the `result` value.
* @example
* <BR>
*
* ```javascript
* const { promisify } from '@plugnet/util';
*
* await promisify(null, ((a, cb) => cb(null, a), true); // resolves with `true`
* await promisify(null, (cb) => cb(new Error('error!'))); // rejects with `error!`
* ```
*/
function promisify(self, fn) {
for (var _len = arguments.length, params = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
params[_key - 2] = arguments[_key];
}
return new Promise((resolve, reject) => {
fn.apply(self, params.concat([// @ts-ignore
(error, result) => {
if (error) {
reject(error);
} else {
resolve(result);
}
}]));
});
}