Catching errors in promises

node v4.9.1
version: 1.0.0
endpointsharetweet
await Promise.resolve() .then(() => { throw new Error('bad things!') }) .catch((err) => err.message) .catch((err) => '[error] ' + err) .then((data) => '[no-error] ' + data);
Loading…

no comments

    sign in to comment