Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Jan 4, 2024
1 parent 2890337 commit bd44d42
Showing 1 changed file with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
var module = {};
var module = {}

(function main(global, module) {
module.exports = function() {}
;(function main(global, module) {
module.exports = function () {}

module.exports.create = () => {}
}((function () {
return this || {};
})(), module, false));
})(
(function () {
return this || {}
})(),
module,
false
)


export default module.exports;
export var create = module.exports.create;
export default module.exports
export var create = module.exports.create

0 comments on commit bd44d42

Please sign in to comment.