(ar)
| 1247 | // NOTE: These type checking functions intentionally don't use `instanceof` |
| 1248 | // because it is fragile and can be easily faked with `Object.create()`. |
| 1249 | function isArray(ar) { |
| 1250 | return Array.isArray(ar); |
| 1251 | } |
| 1252 | exports.isArray = isArray; |
| 1253 | |
| 1254 | function isBoolean(arg) { |
no outgoing calls
no test coverage detected