Files
labeler/node_modules/nice-try/src/index.js
Shawn Napora 660b172085 add modules
2019-08-08 10:10:17 -04:00

12 lines
303 B
JavaScript

'use strict'
/**
* Tries to execute a function and discards any error that occurs.
* @param {Function} fn - Function that might or might not throw an error.
* @returns {?*} Return-value of the function when no error occurred.
*/
module.exports = function(fn) {
try { return fn() } catch (e) {}
}