lakutata
Version:
An IoC-based universal application framework.
22 lines (18 loc) • 453 B
JavaScript
/* Build Date: Mon Jan 05 2026 23:52:23 GMT+0800 (China Standard Time) */
;
Object.defineProperty(exports, Symbol.toStringTag, {
value: "Module"
});
async function t(t, e) {
const i = await e(t.limit, t.offset, t);
return {
items: i.items,
meta: {
count: i.items.length,
total: i.total,
limit: t.limit,
offset: t.offset
}
};
}
exports.Paginator = t;