UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

10 lines 276 B
import { isSameSet } from "./isSameSet.mjs"; export function getBySet(map, setToMatch) { for (const set of map.keys()) { if (isSameSet(set, setToMatch)) { return map.get(set); } } return undefined; } //# sourceMappingURL=getBySet.js.map