Emmanuel b7eccee437 Navbar | vor 5 Jahren | |
---|---|---|
.. | ||
src | vor 5 Jahren | |
CHANGELOG.md | vor 5 Jahren | |
LICENSE | vor 5 Jahren | |
README.md | vor 5 Jahren | |
package.json | vor 5 Jahren |
A function that tries to execute a function and discards any error that occurs.
npm install nice-try
const niceTry = require('nice-try')
niceTry(() => JSON.parse('true')) // true
niceTry(() => JSON.parse('truee')) // undefined
niceTry() // undefined
niceTry(true) // undefined
fn
{Function}
Function that might or might not throw an error.{?*}
Return-value of the function when no error occurred.