{"version":3,"sources":["../../../src/lib/hasAtLeastOneKeyInMap.ts"],"names":[],"mappings":";;;;;;AAMO,SAAS,qBAAA,CAAyB,KAA0B,IAA6B,EAAA;AAC/F,EAAA,OAAO,KAAK,IAAK,CAAA,CAAC,QAAQ,GAAI,CAAA,GAAA,CAAI,GAAG,CAAC,CAAA;AACvC;AAFgB,MAAA,CAAA,qBAAA,EAAA,uBAAA,CAAA","file":"hasAtLeastOneKeyInMap.cjs","sourcesContent":["/**\n * Checks whether any of the {@link keys} are in the {@link map}\n * @param map The map to check\n * @param keys The keys to find in the map\n * @returns `true` if at least one of the {@link keys} is in the {@link map}, `false` otherwise.\n */\nexport function hasAtLeastOneKeyInMap<T>(map: ReadonlyMap<T, any>, keys: readonly T[]): boolean {\n\treturn keys.some((key) => map.has(key));\n}\n"]}