A templating language that looks like Lisp and compiles to HTML
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

node.js 168B

123456789
  1. module.exports = class Node {
  2. constructor(opts = false) {
  3. if (opts) {
  4. Object.keys(opts).forEach(opt => {
  5. this[opt] = opts[opt]
  6. })
  7. }
  8. }
  9. }