You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the sample code Prince() .inputs("test.html") .output("test.pdf") .execute() .then(function () { console.log("OK: done") }, function (error) { console.log("ERROR: ", util.inspect(error)) })
The rejection function will only log the first error that is returned by Prince. I have an html document that has at least 3 errors that I would like to log and return to the client but only have access to the first error. Please add support for an array of errors.
The text was updated successfully, but these errors were encountered:
in the sample code
Prince() .inputs("test.html") .output("test.pdf") .execute() .then(function () { console.log("OK: done") }, function (error) { console.log("ERROR: ", util.inspect(error)) })
The rejection function will only log the first error that is returned by Prince. I have an html document that has at least 3 errors that I would like to log and return to the client but only have access to the first error. Please add support for an array of errors.
The text was updated successfully, but these errors were encountered: