Skip to content

Instantly share code, notes, and snippets.

@expalmer
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save expalmer/4bc6203dc2a3f7134e78 to your computer and use it in GitHub Desktop.
Save expalmer/4bc6203dc2a3f7134e78 to your computer and use it in GitHub Desktop.
Metalsmith Gist Test Example
var Animal = function ( name ) {
this.name = name;
}
Animal.prototype.getName = function () {
return this.name;
}
var tiger = new Animal('Tiger');
tiger.getName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment