refactor: rename functions.ts to internals/utils.ts

This commit is contained in:
Shinwoo PARK 2025-03-21 08:53:34 +09:00
parent dfd4aeba8f
commit 70f69c634b
3 changed files with 1 additions and 71 deletions

Binary file not shown.

View File

@ -58,76 +58,6 @@ export function excludeObjectSync(
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(
ocv: any,
options?: {

View File

@ -17,7 +17,7 @@ import {
scopedLogger,
createRouteParamDecorator
} from "./reflected";
import { imObjectContainedLogSync, getItemByPathSync } from "./functions";
import { imObjectContainedLogSync, getItemByPathSync } from "./internals/utils";
import { RequestMethod } from "@nestjs/common";
const RevRequestMethod = [