Files
klz-cables.com/.pnpm-store/v10/files/89/f0ce43229bdbf817268be0844a3f1221170239c352b4f82db3798e95e89f8c76e98608a6697db8241bca81649c8c5f81e4e206fa7a6b20640d36c12a25c385
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
203 B
Plaintext

import { sql } from "../sql.js";
function asc(column) {
return sql`${column} asc`;
}
function desc(column) {
return sql`${column} desc`;
}
export {
asc,
desc
};
//# sourceMappingURL=select.js.map