UNPKG

sqlocal

Version:

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

9 lines 372 B
export function sqlTag(queryTemplate, ...params) { const normalizedSql = typeof queryTemplate === 'string' ? queryTemplate : queryTemplate.join('?'); const normalizedParams = params.length === 1 && Array.isArray(params[0]) ? params[0] : params; return { sql: normalizedSql, params: normalizedParams, }; } //# sourceMappingURL=sql-tag.js.map