Skip to content

Commit da0464c

Browse files
committed
typo
1 parent 95ad8d7 commit da0464c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/sql.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ export function make_sql(conn) {
502502
val = is_safe(int) ? Number(int) : int;
503503
}
504504
else if (type == SQLITE_FLOAT) {
505-
val = sqlite3.sqlite3_column_doublt(stmt, i);
505+
val = sqlite3.sqlite3_column_double(stmt, i);
506506
}
507507
else if (type == SQLITE3_TEXT) {
508508
const len = sqlite3.sqlite3_column_bytes(stmt, i);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sql.mjs",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "SQLite Compiled to WASM, asyncified, and then wrapped in a little JavaScript.",
55
"keywords": [
66
"sqlite",

0 commit comments

Comments
 (0)