UNPKG

sqlocal

Version:

SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.

12 lines (10 loc) 204 B
import type { Statement } from '../types.js'; export function sqlTag( queryTemplate: TemplateStringsArray, ...params: unknown[] ): Statement { return { sql: queryTemplate.join('?'), params, }; }