UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

14 lines (11 loc) • 305 B
"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); };