(value)
| 4430 | } |
| 4431 | |
| 4432 | function isUndefinedOrNull(value) { |
| 4433 | return value === null || value === undefined; |
| 4434 | } |
| 4435 | |
| 4436 | function isBuffer (x) { |
| 4437 | if (!x || typeof x !== 'object' || typeof x.length !== 'number') return false; |
no outgoing calls
no test coverage detected
searching dependent graphs…