Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Como pegar [[PromiseValue]] : IDBDatabase

Ao realizar :

      let conexao = ConnectionFactory.getConnection()
                    .then(connection => {
                        return connection;
                    })
                    .catch(erro => console.log(erro));

    console.log(conexao);

tenho como retorno :

Promise__proto__: 
Promise[[PromiseStatus]]: "resolved"
[[PromiseValue]]: IDBDatabaseclose:

Tem alguma maneira de retornar apenas o [[PromiseValue]]: IDBDatabaseclose aqui :

                    .then(connection => {
                        return connection;
                    })

Grato.

1 resposta
solução!

Problema solucionado, achei uma forma .