(n: number)
| 703 | const escape = (str: string) => "[" + str.replace(/\]/g, "]]").replace(/\./g, "].[") + "]" |
| 704 | |
| 705 | function numberToParamName(n: number) { |
| 706 | return `${Math.ceil(n + 1)}` |
| 707 | } |
| 708 | |
| 709 | /** |
| 710 | * Default mapping from Effect SQL primitive value kinds to Tedious SQL Server parameter data types. |
no outgoing calls
no test coverage detected