UNPKG

sworm

Version:

a lightweight write-only ORM for MSSQL, MySQL, PostgreSQL, Oracle, Sqlite 3

12 lines (11 loc) 262 B
module.exports = function(name) { try { return require(name); } catch (e) { if (e.code === "MODULE_NOT_FOUND") { throw new Error(name + " driver not found, please install it with: npm install " + name); } else { throw e; } } };