UNPKG

@abaplint/runtime

Version:
14 lines 439 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.buildDbTableName = buildDbTableName; function buildDbTableName(table) { // @ts-ignore let ret = `"${abap.dbo.tablePrefix + table.trimEnd().toLowerCase()}"`; // @ts-ignore if (abap.dbo.schemaPrefix !== "") { // @ts-ignore ret = `"${abap.dbo.schemaPrefix}".` + ret; } return ret; } //# sourceMappingURL=prefix.js.map