(arg)
| 35653 | // because it is fragile and can be easily faked with `Object.create()`. |
| 35654 | |
| 35655 | function isArray(arg) { |
| 35656 | if (Array.isArray) { |
| 35657 | return Array.isArray(arg); |
| 35658 | } |
| 35659 | return objectToString(arg) === '[object Array]'; |
| 35660 | } |
| 35661 | exports.isArray = isArray; |
| 35662 | |
| 35663 | function isBoolean(arg) { |
no test coverage detected