caoge c760052ff9 机车状态修改 | hace 8 meses | |
---|---|---|
.. | ||
src | hace 8 meses | |
CHANGELOG.md | hace 8 meses | |
LICENSE | hace 8 meses | |
README.md | hace 8 meses | |
package.json | hace 8 meses |
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.