Skip to content

Commit

Permalink
Another build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbol99 committed Dec 8, 2023
1 parent 9c9f0d8 commit 34c353e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dist/main.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ Object.defineProperty(Flatten, 'DP_TOL', {
* Class of system errors
*/
class Errors {
constructor() {
this.dummy = 0;
}

/**
* Throw error ILLEGAL_PARAMETERS when cannot instantiate from given parameter
* @returns {ReferenceError}
Expand Down
4 changes: 4 additions & 0 deletions dist/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ Object.defineProperty(Flatten, 'DP_TOL', {
* Class of system errors
*/
class Errors {
constructor() {
this.dummy = 0;
}

/**
* Throw error ILLEGAL_PARAMETERS when cannot instantiate from given parameter
* @returns {ReferenceError}
Expand Down
4 changes: 4 additions & 0 deletions dist/main.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@
* Class of system errors
*/
class Errors {
constructor() {
this.dummy = 0;
}

/**
* Throw error ILLEGAL_PARAMETERS when cannot instantiate from given parameter
* @returns {ReferenceError}
Expand Down
4 changes: 4 additions & 0 deletions src/utils/errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ import Flatten from "../flatten";
* Class of system errors
*/
export class Errors {
constructor() {
this.dummy = 0
}

/**
* Throw error ILLEGAL_PARAMETERS when cannot instantiate from given parameter
* @returns {ReferenceError}
Expand Down

0 comments on commit 34c353e

Please sign in to comment.