summary refs log tree commit diff
path: root/src/util/imports/OrmUtils.ts
diff options
context:
space:
mode:
authorEmma [it/its]@Rory& <root@rory.gay>2023-12-11 01:12:54 +0100
committerEmma [it/its]@Rory& <root@rory.gay>2023-12-11 01:12:54 +0100
commit0a8ceb9e6349284e75545a01ffad608b020f78e2 (patch)
tree17a9163f963eddabf9168b0b630096b2f7535b64 /src/util/imports/OrmUtils.ts
parentPrettier: use editorconfig (diff)
downloadserver-0a8ceb9e6349284e75545a01ffad608b020f78e2.tar.xz
Actually run prettier dev/emma-refactors
Diffstat (limited to 'src/util/imports/OrmUtils.ts')
-rw-r--r--src/util/imports/OrmUtils.ts20
1 files changed, 3 insertions, 17 deletions
diff --git a/src/util/imports/OrmUtils.ts b/src/util/imports/OrmUtils.ts
index 039c81fe..3a11be24 100644
--- a/src/util/imports/OrmUtils.ts
+++ b/src/util/imports/OrmUtils.ts
@@ -12,12 +12,7 @@ export class OrmUtils {
 		return !item.constructor || item.constructor === Object;
 	}
 
-	private static mergeArrayKey(
-		target: any,
-		key: number,
-		value: any,
-		memo: Map<any, any>,
-	) {
+	private static mergeArrayKey(target: any, key: number, value: any, memo: Map<any, any>) {
 		// Have we seen this before?  Prevent infinite recursion.
 		if (memo.has(value)) {
 			target[key] = memo.get(value);
@@ -46,12 +41,7 @@ export class OrmUtils {
 		memo.delete(value);
 	}
 
-	private static mergeObjectKey(
-		target: any,
-		key: string,
-		value: any,
-		memo: Map<any, any>,
-	) {
+	private static mergeObjectKey(target: any, key: string, value: any, memo: Map<any, any>) {
 		// Have we seen this before?  Prevent infinite recursion.
 		if (memo.has(value)) {
 			Object.assign(target, { [key]: memo.get(value) });
@@ -80,11 +70,7 @@ export class OrmUtils {
 		memo.delete(value);
 	}
 
-	private static merge(
-		target: any,
-		source: any,
-		memo: Map<any, any> = new Map(),
-	): any {
+	private static merge(target: any, source: any, memo: Map<any, any> = new Map()): any {
 		if (Array.isArray(target) && Array.isArray(source)) {
 			for (let key = 0; key < source.length; key++) {
 				this.mergeArrayKey(target, key, source[key], memo);