Skip to content

Instantly share code, notes, and snippets.

@stephencroberts
Last active August 29, 2015 14:21
Show Gist options
  • Save stephencroberts/8d9ac99f9045a6a7ca86 to your computer and use it in GitHub Desktop.
Save stephencroberts/8d9ac99f9045a6a7ca86 to your computer and use it in GitHub Desktop.
Convert json object to Review model
{
file: {
url: "http://someimage.jpg",
title: "Some Image"
}
}
review = {}
review.prototype.image = function() {
return {
src: this.file.url,
alt: this.file.title
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment