UNPKG

@abbott-platform/abbott-framework

Version:

Abbott Framework is a framework to bring productivity and abstractions to help you to build awesome chatbots.

9 lines (7 loc) 157 B
var fs = require('fs'); class Utils { requireIfExits(path) { return (fs.existsSync(path)) ? require(path) : null; } } module.exports = new Utils();