UNPKG

db-meta

Version:

Relational database metadata extraction library

12 lines (8 loc) 203 B
module.exports = Table; var dbmUtil = require('./util'); function Table(props) { this.meta = dbmUtil.lowercaseKeys(props); } Table.prototype.getName = function() { return this.meta.table_name; };