mirror of
https://github.com/619dev/PaperPhone.git
synced 2026-05-08 06:48:33 +08:00
14 lines
305 B
JavaScript
14 lines
305 B
JavaScript
"use strict";
|
|
|
|
function noop() {}
|
|
|
|
/**
|
|
* Reflects a promise but does not expose any
|
|
* underlying value or rejection from that promise.
|
|
* @param {Promise} promise [description]
|
|
* @return {Promise} [description]
|
|
*/
|
|
exports.reflector = function(promise) {
|
|
return promise.then(noop, noop);
|
|
};
|