v2.2.5
This commit is contained in:
parent
fcabadf8af
commit
05fa6100fb
6
dist/lib/functions.d.ts
vendored
6
dist/lib/functions.d.ts
vendored
@ -1,13 +1,7 @@
|
|||||||
export declare const notIncludedSymbol: unique symbol;
|
export declare const notIncludedSymbol: unique symbol;
|
||||||
export declare function includeOrExcludeObject(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
|
|
||||||
export declare function includeOrExcludeObjectSync(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
|
export declare function includeOrExcludeObjectSync(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
|
||||||
export default function objectContainedLogged(ocv: any, options?: {
|
|
||||||
include?: string[];
|
|
||||||
exclude: string[];
|
|
||||||
}): Promise<string>;
|
|
||||||
export declare function objectContainedLoggedSync(ocv: any, options?: {
|
export declare function objectContainedLoggedSync(ocv: any, options?: {
|
||||||
include?: string[];
|
include?: string[];
|
||||||
exclude: string[];
|
exclude: string[];
|
||||||
}): string;
|
}): string;
|
||||||
export declare function getItemByPath(obj: object, path: string | string[]): any;
|
|
||||||
export declare function getItemByPathSync(obj: object, path: string | string[]): any;
|
export declare function getItemByPathSync(obj: object, path: string | string[]): any;
|
||||||
|
53
dist/lib/functions.js
vendored
53
dist/lib/functions.js
vendored
@ -1,28 +1,7 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getItemByPathSync = exports.getItemByPath = exports.objectContainedLoggedSync = exports.includeOrExcludeObjectSync = exports.includeOrExcludeObject = exports.notIncludedSymbol = void 0;
|
exports.getItemByPathSync = exports.objectContainedLoggedSync = exports.includeOrExcludeObjectSync = exports.notIncludedSymbol = void 0;
|
||||||
exports.notIncludedSymbol = Symbol("notIncluded");
|
exports.notIncludedSymbol = Symbol("notIncluded");
|
||||||
async function includeOrExcludeObject(ocv, paths, currentPath = [], include // or exclude
|
|
||||||
) {
|
|
||||||
if (Array.isArray(ocv)) {
|
|
||||||
return (await Promise.all(ocv.map(async (v, i) => await includeOrExcludeObject(v, paths, [...currentPath, i.toString()], include)))).filter((e) => e !== exports.notIncludedSymbol);
|
|
||||||
}
|
|
||||||
if (typeof ocv === "object") {
|
|
||||||
return Object.fromEntries((await Promise.all(Object.entries(ocv).map(async ([key, value]) => [
|
|
||||||
key,
|
|
||||||
await includeOrExcludeObject(value, paths, [...currentPath, key], include),
|
|
||||||
]))).filter((e) => e[1] !== exports.notIncludedSymbol));
|
|
||||||
}
|
|
||||||
const isIncluded = paths.includes(currentPath.join("."));
|
|
||||||
return include
|
|
||||||
? isIncluded // include mode, path is in list
|
|
||||||
? ocv
|
|
||||||
: exports.notIncludedSymbol
|
|
||||||
: isIncluded // exclude mode, path is in list
|
|
||||||
? exports.notIncludedSymbol
|
|
||||||
: ocv;
|
|
||||||
}
|
|
||||||
exports.includeOrExcludeObject = includeOrExcludeObject;
|
|
||||||
function includeOrExcludeObjectSync(ocv, paths, currentPath = [], include // or exclude
|
function includeOrExcludeObjectSync(ocv, paths, currentPath = [], include // or exclude
|
||||||
) {
|
) {
|
||||||
if (Array.isArray(ocv)) {
|
if (Array.isArray(ocv)) {
|
||||||
@ -31,7 +10,7 @@ function includeOrExcludeObjectSync(ocv, paths, currentPath = [], include // or
|
|||||||
if (typeof ocv === "object") {
|
if (typeof ocv === "object") {
|
||||||
return Object.fromEntries(Object.entries(ocv).map(([key, value]) => [
|
return Object.fromEntries(Object.entries(ocv).map(([key, value]) => [
|
||||||
key,
|
key,
|
||||||
includeOrExcludeObject(value, paths, [...currentPath, key], include),
|
includeOrExcludeObjectSync(value, paths, [...currentPath, key], include),
|
||||||
]).filter((e) => e[1] !== exports.notIncludedSymbol));
|
]).filter((e) => e[1] !== exports.notIncludedSymbol));
|
||||||
}
|
}
|
||||||
const isIncluded = paths.includes(currentPath.join("."));
|
const isIncluded = paths.includes(currentPath.join("."));
|
||||||
@ -44,23 +23,6 @@ function includeOrExcludeObjectSync(ocv, paths, currentPath = [], include // or
|
|||||||
: ocv;
|
: ocv;
|
||||||
}
|
}
|
||||||
exports.includeOrExcludeObjectSync = includeOrExcludeObjectSync;
|
exports.includeOrExcludeObjectSync = includeOrExcludeObjectSync;
|
||||||
async function objectContainedLogged(ocv, options) {
|
|
||||||
if (options && typeof ocv === "object") {
|
|
||||||
if (options.include && options.include.length > 0) {
|
|
||||||
return JSON.stringify(await includeOrExcludeObject(ocv, options.include, [], true));
|
|
||||||
}
|
|
||||||
if (options.exclude && options.exclude.length > 0) {
|
|
||||||
return JSON.stringify(await includeOrExcludeObject(ocv, options.exclude, [], false));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (typeof ocv === "object") {
|
|
||||||
return JSON.stringify(ocv);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return `${ocv}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.default = objectContainedLogged;
|
|
||||||
function objectContainedLoggedSync(ocv, options) {
|
function objectContainedLoggedSync(ocv, options) {
|
||||||
if (options && typeof ocv === "object") {
|
if (options && typeof ocv === "object") {
|
||||||
if (options.include && options.include.length > 0) {
|
if (options.include && options.include.length > 0) {
|
||||||
@ -78,20 +40,11 @@ function objectContainedLoggedSync(ocv, options) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.objectContainedLoggedSync = objectContainedLoggedSync;
|
exports.objectContainedLoggedSync = objectContainedLoggedSync;
|
||||||
async function getItemByPath(obj, path) {
|
|
||||||
const paths = Array.isArray(path) ? path : path.split(".");
|
|
||||||
return Object.keys(obj).includes(paths[0])
|
|
||||||
? typeof obj[paths[0]] === "object"
|
|
||||||
? await getItemByPath(obj[paths[0]], paths.slice(1))
|
|
||||||
: obj[paths[0]]
|
|
||||||
: undefined;
|
|
||||||
}
|
|
||||||
exports.getItemByPath = getItemByPath;
|
|
||||||
function getItemByPathSync(obj, path) {
|
function getItemByPathSync(obj, path) {
|
||||||
const paths = Array.isArray(path) ? path : path.split(".");
|
const paths = Array.isArray(path) ? path : path.split(".");
|
||||||
return Object.keys(obj).includes(paths[0])
|
return Object.keys(obj).includes(paths[0])
|
||||||
? typeof obj[paths[0]] === "object"
|
? typeof obj[paths[0]] === "object"
|
||||||
? getItemByPath(obj[paths[0]], paths.slice(1))
|
? getItemByPathSync(obj[paths[0]], paths.slice(1))
|
||||||
: obj[paths[0]]
|
: obj[paths[0]]
|
||||||
: undefined;
|
: undefined;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user