* Helper function for readability above.
(destination, source)
| 169 | * Helper function for readability above. |
| 170 | */ |
| 171 | function extend(destination, source) { |
| 172 | for (var property in source) destination[property] = source[property]; |
| 173 | return destination; |
| 174 | } |
| 175 | |
| 176 | }()); |