mirror of
https://github.com/electron/electron.git
synced 2026-02-07 21:55:48 -05:00
6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
exports.twicePromise = function (promise) {
|
|
return promise.then(function (value) {
|
|
return value * 2;
|
|
});
|
|
}
|