silent_require.js 88 B

12345
  1. module.exports = function(path) {
  2. try {
  3. return require(path);
  4. } catch (e) {}
  5. };