Minor formatting and refactoring

This commit is contained in:
barsdeveloper
2022-04-14 21:25:36 +02:00
parent f29119809f
commit 9b0f344dcc
12 changed files with 170 additions and 199 deletions

14
dist/ueblueprint.js vendored
View File

@@ -1067,8 +1067,6 @@ class Utility {
}
return [...(new Set(result.concat(...a, ...b)))]
}
}
// @ts-check
@@ -1219,12 +1217,6 @@ class IdentifierEntity extends IEntity {
}
constructor(options = {}) {
// Not instanceof to pick also primitive string
if (options.constructor === String) {
options = {
value: options
};
}
super(options);
/** @type {String} */ this.value;
}
@@ -1250,11 +1242,6 @@ class IntegerEntity extends IEntity {
* @param {Object | Number | String} options
*/
constructor(options = 0) {
if (options.constructor == Number || options.constructor == String) {
options = {
value: options,
};
}
super(options);
this.value = Math.round(this.value);
}
@@ -4150,7 +4137,6 @@ class Blueprint extends IElement {
* @param {Number} factor - Either 1 (expand) or -1 (shrink)
*/
/**
* Expand or shrink the grind indefinitely, the content will remain into position
* @param {Number[]} param0 - Expand value (negative means shrink, positive means expand)