UNPKG

pgsql-deparser

Version:
10 lines (9 loc) 314 B
import { Deparser } from "./deparser"; const deparseMethod = Deparser.deparse; // Export the original sync version as deparseSync export const deparseSync = deparseMethod; // Create an async wrapper for deparse export const deparse = async (...args) => { return deparseMethod(...args); }; export { Deparser };