UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

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); };