(val)
| 333 | |
| 334 | // Utility for checking whether a value is undefined or null |
| 335 | function isUndefinedOrNull (val) { |
| 336 | return (val === null || typeof val === 'undefined'); |
| 337 | } |
| 338 | |
| 339 | // Utility for checking whether a value is an arguments object |
| 340 | function isArgumentsObject (val) { |
no outgoing calls
no test coverage detected