Skip to content

Commit 632616d

Browse files
committed
chore(fmt)
1 parent c04c7a4 commit 632616d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

doc/working-with-data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ SQLite supports several data types, and this library handles JavaScript type con
101101

102102
### Type Mapping
103103

104-
| Storage Class | JavaScript → SQLite | SQLite → JavaScript |
105-
| ------------- | ---------------------------- | ------------------------------------- |
106-
| `NULL` | `null` | `null` |
107-
| `INTEGER` | `number` or `bigint` | `number` or `bigint` _(configurable)_ |
108-
| `REAL` | `number` | `number` |
109-
| `TEXT` | `string` | `string` |
110-
| `BLOB` | `TypedArray` or `DataView` | `Uint8Array` |
104+
| Storage Class | JavaScript → SQLite | SQLite → JavaScript |
105+
| ------------- | -------------------------- | ------------------------------------- |
106+
| `NULL` | `null` | `null` |
107+
| `INTEGER` | `number` or `bigint` | `number` or `bigint` _(configurable)_ |
108+
| `REAL` | `number` | `number` |
109+
| `TEXT` | `string` | `string` |
110+
| `BLOB` | `TypedArray` or `DataView` | `Uint8Array` |
111111

112112
APIs that read values from SQLite have a configuration option that determines
113113
whether `INTEGER` values are converted to `number` or `bigint` in JavaScript,

0 commit comments

Comments
 (0)