(value: number | null)
| 765 | const requiredJsonText = (value: unknown): string => jsonText(value) ?? JSON.stringify({}); |
| 766 | |
| 767 | const sqliteBigintText = (value: number | null): string | null => |
| 768 | value == null ? null : String(Math.trunc(value)); |
| 769 | |
| 770 | const legacyBlobNamespace = ( |
| 771 | namespace: string, |