(source: S, target: T)
| 34 | } |
| 35 | |
| 36 | function copySymbolsFromSource<S extends object, T extends object>(source: S, target: T) { |
| 37 | const symbols = Object.getOwnPropertySymbols(source) |
| 38 | const symbolObject = Object.fromEntries(symbols.map((symbol) => [symbol, true])) |
| 39 | Object.assign(target, symbolObject) |
| 40 | } |
| 41 | |
| 42 | export const bindMigrationAwareSqlAdapterFactory = ( |
| 43 | adapterFactory: SqlMigrationAwareDriverAdapterFactory, |
no outgoing calls
no test coverage detected