A templating language that looks like Lisp and compiles to HTML
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456
  1. module.exports = class Error {
  2. constructor(opts) {
  3. this.line = opts.line
  4. this.message = opts.message
  5. }
  6. }