Converts a database JSON value to its JS representation.
(value: unknown, context?: TransformContext)
| 630 | |
| 631 | /** Converts a database JSON value to its JS representation. */ |
| 632 | convertJsonToJSValue(value: unknown, context?: TransformContext): unknown { |
| 633 | return parseJsonSafe(value); |
| 634 | } |
| 635 | |
| 636 | convertDateToJSValue(value: string | Date): string { |
| 637 | return value as string; |
nothing calls this directly
no test coverage detected