Skip to content

Instantly share code, notes, and snippets.

View jonashw's full-sized avatar

Jon Wilson jonashw

  • Yolo County, California
View GitHub Profile
function extend(destination, source) {
for (var k in source) {
if (source.hasOwnProperty(k)) {
destination[k] = source[k];
}
}
return destination;
}
function getFileServicesHost() {