UNPKG

lux-framework

Version:

Build scalable, Node.js-powered REST APIs with almost no code.

12 lines (10 loc) 255 B
const drivers = new Map([ ['postgres', 'pg'], ['sqlite', 'sqlite3'], ['mysql', 'mysql2'], ['mariadb', 'mariasql'], ['oracle', 'oracle'] ]); export default function driverFor(database = 'sqlite') { return drivers.get(database) || 'sqlite3'; }