6 lines
89 B
JavaScript
Raw Normal View History

module.exports = function (path) {
try {
return require(path);
} catch (e) {}
};