ddstats-server/libs/db/helper.js

12 lines
317 B
JavaScript
Raw Normal View History

2021-10-31 21:24:55 +01:00
import { sqlite } from './init.js'
/**
* This function takes an array of strings to be ran on the DB.
*
* @param {array} instructions Array of instructions to be ran.
* @author BurnyLlama
*/
export function execMany(instructions) {
for (const instruction of instructions)
sqlite.exec(instruction)
}