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