(obj)
| 79 | function isDocument(obj) { return obj != null && obj.nodeType == obj.DOCUMENT_NODE } |
| 80 | |
| 81 | function isObject(obj) { return type(obj) == "object" } |
| 82 | |
| 83 | function isPlainObject(obj) { |
| 84 | return isObject(obj) && !isWindow(obj) && Object.getPrototypeOf(obj) == Object.prototype |
no test coverage detected