(ar)
| 11021 | // NOTE: These type checking functions intentionally don't use `instanceof` |
| 11022 | // because it is fragile and can be easily faked with `Object.create()`. |
| 11023 | function isArray(ar) { |
| 11024 | return Array.isArray(ar); |
| 11025 | } |
| 11026 | exports.isArray = isArray; |
| 11027 | |
| 11028 | function isBoolean(arg) { |
no outgoing calls
no test coverage detected