(obj, prop, what, where, recurse)
| 4029 | } |
| 4030 | |
| 4031 | function addConditionally(obj, prop, what, where, recurse){ |
| 4032 | var tmp = fetch(what, where, recurse); |
| 4033 | if(tmp) obj[prop] = tmp; |
| 4034 | } |
| 4035 | |
| 4036 | var isValidFeed = function(value){ |
| 4037 | return value === "rss" || value === "feed" || value === "rdf:RDF"; |
no test coverage detected
searching dependent graphs…