Skip to content

Commit

Permalink
fix(build): build faild
Browse files Browse the repository at this point in the history
build failed

fix #3
  • Loading branch information
Changlon committed Jan 29, 2022
1 parent 5447f7a commit 420a389
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,19 @@ var callsite = require('callsite')
var { sep } = require('path')


class F2JsonError extends Error{
constructor(message) {
super(message)
}
}

/**
* @module f2json
*/


module.exports = F2Json
module.exports.F2JsonError = F2JsonError
F2Json.F2JsonError = F2JsonError

/**
* Create f2Json
Expand Down Expand Up @@ -183,8 +188,3 @@ F2Json.prototype.clear = function(path_) {
}
}

class F2JsonError extends Error{
constructor(message) {
super(message)
}
}

0 comments on commit 420a389

Please sign in to comment.