1module.exports = function (exec) {
2  try {
3    return !!exec();
4  } catch (e) {
5    return true;
6  }
7};
8