Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created March 27, 2018 09:56
Show Gist options
  • Save haingdc/71babddd2e34bb4a58560d52fc18bd98 to your computer and use it in GitHub Desktop.
Save haingdc/71babddd2e34bb4a58560d52fc18bd98 to your computer and use it in GitHub Desktop.
get start with tdd
// flickr-fetcher.js
FlickrFetcher = {
photoObjToURL: function(photoObj) {
return 'https://farm' + photoObj.farm + '.staticflickr.com/' + photoObj.server + '/' + photoObj.id + '_' +
photoObj.secret + '_b.jpg';
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment