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.

error.js 143B

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