(val)
| 343 | |
| 344 | // Utility for checking whether a value is plain object |
| 345 | function isPlainObject (val) { |
| 346 | return Object.prototype.toString.call(val) === '[object Object]'; |
| 347 | } |
| 348 | |
| 349 | // Utility for checking whether an object contains another object |
| 350 | function includes (haystack, needle) { |
no outgoing calls
no test coverage detected
searching dependent graphs…