webpack/examples/top-level-await/UserApi.js

7 lines
158 B
JavaScript
Raw Normal View History

import await { dbCall } from "./db-connection.js";
export const createUser = async name => {
command = `CREATE USER ${name}`;
await dbCall({ command });
}