dragonroll/backend/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js

6 lines
392 B
JavaScript
Raw Normal View History

2024-09-21 17:08:36 +00:00
import { IniSectionType } from "@smithy/types";
import { CONFIG_PREFIX_SEPARATOR } from "./loadSharedConfigFiles";
export const getSsoSessionData = (data) => Object.entries(data)
.filter(([key]) => key.startsWith(IniSectionType.SSO_SESSION + CONFIG_PREFIX_SEPARATOR))
.reduce((acc, [key, value]) => ({ ...acc, [key.substring(key.indexOf(CONFIG_PREFIX_SEPARATOR) + 1)]: value }), {});