(n: number)
| 505 | const escape = (str: string) => "[" + str.replace(/\]/g, "]]").replace(/\./g, "].[") + "]" |
| 506 | |
| 507 | function numberToParamName(n: number) { |
| 508 | return `${Math.ceil(n + 1)}` |
| 509 | } |
| 510 | |
| 511 | /** |
| 512 | * @since 1.0.0 |
no outgoing calls
no test coverage detected