(subject)
| 1632 | } |
| 1633 | |
| 1634 | function isArrayish (subject) { |
| 1635 | return isArray(subject) || Buffer.isBuffer(subject) || |
| 1636 | subject && typeof subject === 'object' && |
| 1637 | typeof subject.length === 'number' |
| 1638 | } |
| 1639 | |
| 1640 | function toHex (n) { |
| 1641 | if (n < 16) return '0' + n.toString(16) |