(source, element)
| 2005 | } |
| 2006 | |
| 2007 | function elementText(source, element) { |
| 2008 | var match = source.match(["<", element, ">(.+)</", element, ">"].join("")); |
| 2009 | return match ? match[1] : ''; |
| 2010 | } |
| 2011 | |
| 2012 | function defer() { |
| 2013 | var deferred = {}, promise; |
no outgoing calls
no test coverage detected