"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = grabTargetTableSchema; function grabTargetTableSchema({ tables, tableName, }) { const targetTable = tables.find((tbl) => tableName && tableName == tbl.tableName); return targetTable; }