diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index 93eb6a5..63b4182 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/src/functions.ts b/src/internals/utils.ts similarity index 59% rename from src/functions.ts rename to src/internals/utils.ts index 59c41ce..19741a5 100644 --- a/src/functions.ts +++ b/src/internals/utils.ts @@ -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?: { diff --git a/src/logged.ts b/src/logged.ts index f36217b..57f9a6f 100644 --- a/src/logged.ts +++ b/src/logged.ts @@ -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 = [