UNPKG

catlogjs

Version:

Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions

14 lines (9 loc) 217 B
var Wombat = function(opts) { opts = opts || {}; this.name = opts.name || 'Wally'; this.eat = function(food) { if (!food) throw Error('D:'); return 'nom nom'; } return this; };