refactor: rename functions.ts to internals/utils.ts
This commit is contained in:
parent
dfd4aeba8f
commit
70f69c634b
Binary file not shown.
@ -58,76 +58,6 @@ export function excludeObjectSync(
|
|||||||
return copied
|
return copied
|
||||||
}
|
}
|
||||||
|
|
||||||
export function includeOrExcludeObjectSync(
|
|
||||||
ocv: any,
|
|
||||||
paths: string[],
|
|
||||||
currentPath: string[] = [],
|
|
||||||
include: boolean // or exclude
|
|
||||||
) {
|
|
||||||
if (Array.isArray(ocv)) {
|
|
||||||
return (
|
|
||||||
ocv.map(
|
|
||||||
(v, i) =>
|
|
||||||
includeOrExcludeObjectSync(
|
|
||||||
v,
|
|
||||||
paths,
|
|
||||||
[...currentPath, i.toString()],
|
|
||||||
include
|
|
||||||
)
|
|
||||||
)
|
|
||||||
).filter((e) => e !== notIncludedSymbol);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof ocv === "object") {
|
|
||||||
return Object.fromEntries(
|
|
||||||
Object.entries(ocv).map(([key, value]) => [
|
|
||||||
key,
|
|
||||||
includeOrExcludeObjectSync(
|
|
||||||
value,
|
|
||||||
paths,
|
|
||||||
[...currentPath, key],
|
|
||||||
include
|
|
||||||
),
|
|
||||||
]).filter((e) => e[1] !== notIncludedSymbol)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const isIncluded = paths.includes(currentPath.join("."));
|
|
||||||
|
|
||||||
return include
|
|
||||||
? isIncluded // include mode, path is in list
|
|
||||||
? ocv
|
|
||||||
: notIncludedSymbol
|
|
||||||
: isIncluded // exclude mode, path is in list
|
|
||||||
? notIncludedSymbol
|
|
||||||
: ocv;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
export function objectContainedLoggedSync(
|
|
||||||
ocv: any,
|
|
||||||
options?: { include?: string[]; exclude: string[] }
|
|
||||||
): string {
|
|
||||||
if (options && typeof ocv === "object") {
|
|
||||||
if (options.include && options.include.length > 0) {
|
|
||||||
return JSON.stringify(
|
|
||||||
includeOrExcludeObjectSync(ocv, options.include, [], true)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (options.exclude && options.exclude.length > 0) {
|
|
||||||
return JSON.stringify(
|
|
||||||
includeOrExcludeObjectSync(ocv, options.exclude, [], false)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof ocv === "object") {
|
|
||||||
return JSON.stringify(ocv);
|
|
||||||
} else {
|
|
||||||
return `${ocv}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function imObjectContainedLogSync(
|
export function imObjectContainedLogSync(
|
||||||
ocv: any,
|
ocv: any,
|
||||||
options?: {
|
options?: {
|
@ -17,7 +17,7 @@ import {
|
|||||||
scopedLogger,
|
scopedLogger,
|
||||||
createRouteParamDecorator
|
createRouteParamDecorator
|
||||||
} from "./reflected";
|
} from "./reflected";
|
||||||
import { imObjectContainedLogSync, getItemByPathSync } from "./functions";
|
import { imObjectContainedLogSync, getItemByPathSync } from "./internals/utils";
|
||||||
import { RequestMethod } from "@nestjs/common";
|
import { RequestMethod } from "@nestjs/common";
|
||||||
|
|
||||||
const RevRequestMethod = [
|
const RevRequestMethod = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user