(val)
| 338 | |
| 339 | // Utility for checking whether a value is an arguments object |
| 340 | function isArgumentsObject (val) { |
| 341 | return (Object.prototype.toString.call(val) === '[object Arguments]'); |
| 342 | } |
| 343 | |
| 344 | // Utility for checking whether a value is plain object |
| 345 | function isPlainObject (val) { |
no outgoing calls
no test coverage detected