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.

osloError.js 117B

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