From 8661aa7cfa4c3d006b517e364204723d0052209e Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Fri, 9 Jan 2026 01:50:16 +1300 Subject: [PATCH] Remove unused orm function --- src/db/orm.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/db/orm.js b/src/db/orm.js index d14e8ae..4d9b6f1 100644 --- a/src/db/orm.js +++ b/src/db/orm.js @@ -104,21 +104,6 @@ class From { return r } - /** - * @template {Col} Select - * @param {string} what - * @param {Select} col - */ - pluckAs(what, col) { - /** @type {Pluck} */ - // @ts-ignore - const r = this - r.cols = [`${what} AS ${col}`] - this.makeColsSafe = false - r.isPluck = true - return r - } - /** * @param {string} sql */