(x)
| 185 | const END = module.exports.END = {} |
| 186 | |
| 187 | function firstIsString(x) { |
| 188 | if (Array.isArray(x)) |
| 189 | return firstIsString(x[0]) |
| 190 | return typeof x === 'string' ? 1009 : 0 |
| 191 | } |
| 192 | |
| 193 | const mergeUserTypes = module.exports.mergeUserTypes = function(types) { |
| 194 | const user = typeHandlers(types || {}) |