util.promisify和promisifying功能通过破坏

时间:2018-01-17 10:16:34

标签: javascript node.js

有没有办法做一个结合破坏和宣传的单线?

我想在现场宣传以下功能(想象一下,我正在破坏几个功能,并希望将它们全部宣传)。

const { exec, example_of_another_function } = require('child_process');

我能想到的唯一方法是将它分成两行:

const util = require('util');
const exec = util.promisify(require('child_process').exec);
const example_of_another_function = util.promisify(require('child_process').example_of_another_function);

0 个答案:

没有答案