A templating language that looks like Lisp and compiles to HTML
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }