52 lines
2.1 KiB
JavaScript
52 lines
2.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getItemByPathSync = exports.objectContainedLoggedSync = exports.includeOrExcludeObjectSync = exports.notIncludedSymbol = void 0;
|
|
exports.notIncludedSymbol = Symbol("notIncluded");
|
|
function includeOrExcludeObjectSync(ocv, paths, currentPath = [], include // or exclude
|
|
) {
|
|
if (Array.isArray(ocv)) {
|
|
return (ocv.map((v, i) => includeOrExcludeObjectSync(v, paths, [...currentPath, i.toString()], include))).filter((e) => e !== exports.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] !== 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.includeOrExcludeObjectSync = includeOrExcludeObjectSync;
|
|
function objectContainedLoggedSync(ocv, options) {
|
|
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}`;
|
|
}
|
|
}
|
|
exports.objectContainedLoggedSync = objectContainedLoggedSync;
|
|
function getItemByPathSync(obj, path) {
|
|
const paths = Array.isArray(path) ? path : path.split(".");
|
|
return Object.keys(obj).includes(paths[0])
|
|
? typeof obj[paths[0]] === "object"
|
|
? getItemByPathSync(obj[paths[0]], paths.slice(1))
|
|
: obj[paths[0]]
|
|
: undefined;
|
|
}
|
|
exports.getItemByPathSync = getItemByPathSync;
|