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

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