UNPKG

tiny-essentials

Version:

Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.

18 lines (17 loc) 386 B
// @ts-nocheck import create from './create.mjs'; import nextPrev from './nextPrev.mjs'; import pagination from './pagination.mjs'; import sameUser from './sameUser.mjs'; // Modules const mysqlConnector = { // Next and Prev nextPrev, // Pagination pagination, // Same User Generator sameUser, // Create DB Value create, }; export default mysqlConnector;