(x, type)
| 320 | } |
| 321 | |
| 322 | function array(x, type) { |
| 323 | if (!Array.isArray(x)) |
| 324 | return array(Array.from(arguments)) |
| 325 | |
| 326 | return new Parameter(x, type || (x.length ? inferType(x) || 25 : 0), options.shared.typeArrayMap) |
| 327 | } |
| 328 | |
| 329 | function handler(query) { |
| 330 | if (ending) |
nothing calls this directly
no test coverage detected