Skip to content

Commit

Permalink
Removed linter artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
WebReflection committed Jul 21, 2021
1 parent e55de2c commit 8a0168d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions cjs/index.js
Expand Up @@ -90,11 +90,11 @@ module.exports = definition => {
function Class() {
Constructor.apply(this, arguments);
} :
function Class() { }
function Class() {}
)
;
;

const { prototype } = Class;
const {prototype} = Class;

if (Super) {
setPrototypeOf(Class, Super);
Expand Down
6 changes: 3 additions & 3 deletions esm/index.js
Expand Up @@ -89,11 +89,11 @@ export default definition => {
function Class() {
Constructor.apply(this, arguments);
} :
function Class() { }
function Class() {}
)
;
;

const { prototype } = Class;
const {prototype} = Class;

if (Super) {
setPrototypeOf(Class, Super);
Expand Down
6 changes: 3 additions & 3 deletions index.js
Expand Up @@ -92,11 +92,11 @@ var HermesClass = (function (exports) {
function Class() {
Constructor.apply(this, arguments);
} :
function Class() { }
function Class() {}
)
;
;

const { prototype } = Class;
const {prototype} = Class;

if (Super) {
setPrototypeOf(Class, Super);
Expand Down
6 changes: 3 additions & 3 deletions test/hermes.js
Expand Up @@ -89,11 +89,11 @@ const Class = definition => {
function Class() {
Constructor.apply(this, arguments);
} :
function Class() { }
function Class() {}
)
;
;

const { prototype } = Class;
const {prototype} = Class;

if (Super) {
setPrototypeOf(Class, Super);
Expand Down

0 comments on commit 8a0168d

Please sign in to comment.